我想知道如何设置宽度以匹配父版面宽度
new Container(
width: 200.0,
padding: const EdgeInsets.only(top: 16.0),
child: new RaisedButton(
child: new Text(
"Submit",
style: new TextStyle(
color: Colors.white,
)
),
colorBrightness: Brightness.dark,
onPressed: () {
_loginAttempt(context);
},
color: Colors.blue,
),
),
我对Expanded
窗口小部件了解很少,但Expanded
将视图扩展到两个方向,我不知道该怎么做。