I have a TabBarView() with an amount of different views. I want of them to be a Column with a TextField at top and a ListView.Builder() below, but both widgets should be in
Here is the solution:
SingleChildScrollView( physics: ScrollPhysics(), child: Column( children: [ Text('Hey'), ListView.builder( physics: NeverScrollableScrollPhysics(), shrinkWrap: true, itemCount:18, itemBuilder: (context,index){ return Text('Some text'); }) ], ), ),