我想改变这个小部件(页面)的大小,非常感谢!!!
Widget _mainContainer() {
return new Container(
child: new ListView(
children: <Widget>[
new Center(
child: new Column(
children: <Widget>[
_formContainer(),
],
),
),
],
));
}
这是一个我必须在其中实现许多东西的页面,但理想情况下它应该具有较小的尺寸。
这是主要的小部件:
块引用
Widget build(BuildContext context) {
return new Scaffold(
key: globalKey,
backgroundColor: Colors.white,
body: new Stack(
children: <Widget>[_mainContainer(), progressDialogRegion],
));
}
您可以做的只是使用小部件
SizedBox
来定义大小,但请记住,您会在后面看到黑色背景。如果您正在寻找使用类型 windows
Dialog
,您可以简单地通过使用showDialog
和传递具有预定义大小的小部件来完成,例如: