【发布时间】:2019-03-05 11:39:03
【问题描述】:
我想要一个带有文本输入的背景图像,但我不知道应该使用哪个小部件来避免在我的键盘处于活动状态时背景图像缩小。
在这里你可以找到问题的两个屏幕截图和我的代码:
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
var backgroundImage = new BoxDecoration(
image: new DecorationImage(
image: new AssetImage('assets/forest.jpg'), fit: BoxFit.cover));
return new MaterialApp(
home: new Scaffold(
body: new Stack(
children: <Widget>[
new Container(
decoration: backgroundImage,
),
new TextField()
],
)));
}
}
【问题讨论】:
-
使用 resizeToAvoidBottomInset: false,resizeToAvoidBottomPadding 已弃用。 Flutter login page with background Example -