This is my first attempt at building an application that does not use web technologies like CSS and JS. So I guess I don't have much idea about how Layouts, widgets fit together.
I have been trying to build a simple form but the result is not as expected.
Right now the result looks like this:
I want those 2 entry widgets in each row to consume the remaining space but it does not work.
Currently, my code for this looks like this:
checks := container.NewVBox(c1, c2)
names := container.NewVBox(n1, n2)
values := container.NewVBox(v1, v2)
win := container.NewHBox(checks, names, values)
I tried combinations of various layouts like Box, Border, Grid etc. but nothing worked. The grid layout worked but divides the columns in equal space so the checkboxes occupies 1/3 of the space too.
I need suggestions about which layout I can use so that checkboxes can take same space as it is now, but the remaining input fields on each row should use 50% of the rest of the empty space.

