Bottom overflow by 30px

前端 未结 7 495
情深已故
情深已故 2020-12-09 08:00

I face a problem by wrapping TextField with new Expanded(). When try to search something in textfield its show me bottom overflow by <

7条回答
  •  离开以前
    2020-12-09 08:41

    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( 
                  ....
              )
          )
       )
     );
    

提交回复
热议问题