Flutter 解决软键盘弹出背景图片变形

  • Post author:
  • Post category:其他


自己在模拟写登录界面时,添加了一个背景,但是在点击输入时发现背景图片变形

一开始的内容

点击用户名,弹出软键盘时,图片变形且高度超出

解决办法:

我使用的版本是 flutter 2.13

resizeToAvoidBottomInset: false

之前 flutter 2.10 版本

resizeToAvoidBottomPadding: false
Widget build(BuildContext context) {
    return new Scaffold(
      resizeToAvoidBottomInset: false, // 就是这里
      appBar: AppBar(
        centerTitle: true,
        title: Text('My first flutter app',style: TextStyle(color:Colors.white),)
      ),
      endDrawer: RightDrawer(),//右滑内容
      body: Container(
        decoration: BoxDecoration(
          image: DecorationImage(
            image: AssetImage('images/bg.jpg'),
            fit: BoxFit.cover
          )
        ),
        child: _buildLogInWidgets(),
      ),
    );
  }

添加后的界面



版权声明:本文为fearlessnesszhang原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。