I\'m trying to make a profile page, where the users info is at the top. And then have a tab view below that for different views.
This is the code I\'m using
I solved it by adding TabBar inside Container and TabBarView inside Expanded:
TabBar
Container
TabBarView
Expanded
DefaultTabController( length: 3, child: Column( children: [ Container(child: TabBar(..)), Expanded(child: TabBarView(..)), ], ), );