Is there a good way to call setSizeFull() for all components and sub-components of the view? Or what is the proper way
Whenever I create a view I need to endlessly put calls to setSizeFull() on all (or most) of the components. For instance if I have a view with VerticalLayout and a Grid or Tabs in it:
I need to call setSizeFull() on grid
on the VerticalLayout
on the View itself
Othervais I am getting unpredictable width or height.
Don’t think I’ve ever heard that being a problem before, but it’s pretty easy to subclass HorizontalLayout and VerticalLayout and setSizeFull on everything that’s added to them.