I face a problem by wrapping TextField with new Expanded(). When try to search something in textfield its show me bottom overflow by <
TextField
new Expanded()
textfield
I faced a similar problem and fixed it in the following way:
You can wrap it with SingleChildScrollView or with a ListView.
Scaffold( body: Container( height: MediaQuery.of(context).size.height * .50, child: SingleChildScrollView( child: Column( .... ) ) ) );