Flutter TextFormField hidden by keyboard

后端 未结 7 1519
暖寄归人
暖寄归人 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:08

    I use form elements in modal_bottom_sheet plugin. I solved it by just adding the following code to SingleChildScrollView.

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

提交回复
热议问题