Bottom overloaded by 213 pixels in flutter

前端 未结 14 809
面向向阳花
面向向阳花 2021-02-01 02:04

Hi I am trying to create login screen. It is working fine for me. When I open the keyboard then it is giving me an error Bottom overloaded by 213 pixels.

         


        
14条回答
  •  走了就别回头了
    2021-02-01 02:29

    you usually need to provide a scroll widget on top of your widgets because if you try to open the keyboard or change the orientation of your phone, flutter needs to know how to handle the distribution of the widgets on the screen.

    Please review this resource, you can check the different options that flutter provide Out of the box, and choose the best option for your scenario.

    https://flutter.io/widgets/scrolling/

提交回复
热议问题