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

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

I have a Column of Expanded widgets like this:

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


        
9条回答
  •  情歌与酒
    2020-12-02 06:34

    Set resizeToAvoidBottomInset to false instead of resizeToAvoidBottomPadding which is deprecated.

        return Scaffold(
          resizeToAvoidBottomInset : false,
          body: YourWidgets(),
        );
    

提交回复
热议问题