Bottom overloaded by 213 pixels in flutter

前端 未结 14 839
面向向阳花
面向向阳花 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:08

    This align items bottom to top, Try this..

    child: SizedBox(
          height: MediaQuery.of(context).size.height,
                      child: SingleChildScrollView(
                        reverse: true,
    

提交回复
热议问题