How do I disable or prevent the split pane to be resizable?
hSplit := container.NewHSplit(
hello,
widget.NewButton("Hi!", func() {
hello.SetText("Welcome :)")
}),
)
I am trying to have a label followed by the NewList widget.
However, I have tried a bunch of layouts for this e.g NewVBoxLayout but as per the doc, all elements in this will be set to the min height. Hence the list becomes extremely small. I am unable to do this using container.
I have tried NewMaxLayout as well, but the list now overlaps with the Select Item label
