Overflow Error in Flutter when keyboard open

前端 未结 6 767
一向
一向 2020-12-19 18:53

I am designing a login page it overflowed when I click on any text form field it open keyboard and through overflow warning like this see a

6条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-19 19:42

    An even easier version is to just wrap the offending container with a ListView widget. It makes the screen scrollable and is simple to implement. You can use multiple children with this widget.

    Scaffold(  
       body: ListView(
         children:  [
           Container(
           ),
           TextView(
           ),
           Column(
           ),
         ],
       ),
     )
    

提交回复
热议问题