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

后端 未结 9 1277
灰色年华
灰色年华 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:36

    For me changing below item property from true to false

    false
    

    in file

    android/app/src/main/res/values/styles.xml
    

    has made Flutter drag all page content upwards on input focus

提交回复
热议问题