When the keyboard appears, the Flutter widgets resize. How to prevent this?

后端 未结 9 1284
灰色年华
灰色年华 2020-12-02 05:51

I have a Column of Expanded widgets like this:

 return new Container(
      child: new Column(
        crossAxisAlignment: CrossAxisAlignment.stretch,
               


        
9条回答
  •  Happy的楠姐
    2020-12-02 06:29

    In your Scaffold, set resizeToAvoidBottomInset property to false.

    Property "resizeToAvoidBottomPadding" is deprecated now.... In your Scaffold, set resizeToAvoidBottomPadding property to false.

提交回复
热议问题