Needing your help to resize a widget of fine on my app I have the following:
middleLines := container.NewHBox(app.ListLines, linesDetails)
middleLines.Resize(fyne.NewSize(1000, 10000))
containerLines := container.New(layout.NewBorderLayout(toolbarLines, nil, middleLines, nil), toolbarLines, middleLines)middleCase := container.NewHBox(app.ListCases, casesDetails)
containerCases := container.New(layout.NewBorderLayout(toolbarCases, nil, middleCase, nil), toolbarCases, middleCase)
tabs := container.NewAppTabs(
container.NewTabItem("Lines", containerLines),
container.NewTabItem("Cases", containerCases),
)
that's my main window but when I run I have the following: Main App As you see my text entry and my list is to small to show the text.
How can I resize this textboxes and list?