赞
踩
自己在模拟写登录界面时,添加了一个背景,但是在点击输入时发现背景图片变形
一开始的内容
点击用户名,弹出软键盘时,图片变形且高度超出
解决办法:
我使用的版本是 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(),
- ),
- );
- }

添加后的界面
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。