I'm trying to layout my flutter application so that it looks like:
-ListView
-WidgetA
-DefaultTabBarController
-Column
-TabBar
-Expanded
-TabBarView
-WidgetB
-WidgetC
So that the whole screen is scollable and that the contents of Widgets A, B, and C can change and the height of the screen is not fixed.
The only way I have been able to get this to work is by doing something like:
-ListView
-WidgetA
-Container (with fixed height)
-Column
-Expanded
-DefaultTabBarController
-Column
-TabBar
-Expanded
-TabBarView
-WidgetB
-WidgetC
But I don't want to have a hardcoded height. Does anyone know how I can achieve this?