Flutter TextFormField hidden by keyboard

后端 未结 7 1518
暖寄归人
暖寄归人 2020-11-29 03:22

NOTE: Im using Navigator.of(context).push to push ModalRoute,

Hi I have page with ModalRoute with TextFormField in the bod

7条回答
  •  醉酒成梦
    2020-11-29 04:00

    thanks solve my problem with this padding on bottom of textfield

        Padding(
                 padding: EdgeInsets.only(
                 bottom: MediaQuery.of(context).viewInsets.bottom));
    

    and mare reverse list

提交回复
热议问题