Getting 'Horizontal viewport was given unbounded height.' with TabBarView in flutter
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 at the moment, when I take the TabBarView out it doesn't through an error, and if I wrap the TabBarView in an Expanded the error RenderFlex children have non-zero flex but incoming height constraints are unbounded. comes up. @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text(''), ), body: Column( crossAxisAlignment: CrossAxisAlignment.start, children: <Widget>[ Padding( padding: EdgeInsets.all(10.0),