我正在尝试创建方形按钮,但Expanded似乎与容器的工作方式不同。以下面的代码为例
new Expanded(
flex: 2,
child: new Column(
children: <Widget>[
new Expanded(
child:new Row(
children: <Widget>[
new Expanded(child: new MaterialButton(...)),
new Expanded(child: new MaterialButton(....)),
new Expanded(child: new Container(color: Colors.red)),
new Expanded(child: new Container(color: Colors.green)),
]
)
)
],
)
)
....
它显示两个水平扩展但不垂直的按钮。同时,容器将水平和垂直扩展。如果我执行以下操作,则会产生相同的效果:
new Expanded(
flex: 2,
child: new Column(
children: <Widget>[
new Expanded(
child:new Column(
children: <Widget>[
new Expanded(child: new MaterialButton(...)),
new Expanded(child: new MaterialButton(....)),
new Expanded(child: new Container(color: Colors.red)),
new Expanded(child: new Container(color: Colors.green)),
]
)
)
],
)
)
....
我将Row更改为Column。按钮将垂直展开,但不会水平展开,而容器将同时展开。
有没有办法让我的按钮展开以垂直和水平地适合父母?
答案 0 :(得分:27)
将crossAxisAlignment
属性添加到Row
;
crossAxisAlignment: CrossAxisAlignment.stretch
答案 1 :(得分:4)
用ButtonTheme
和minWidth: double.infinity
包裹可以提供约束条件
ButtonTheme(
minWidth: double.infinity,
child: MaterialButton(
onPressed: () {},
child: Text('Raised Button'),
),
),
或https://github.com/flutter/flutter/pull/19416登陆之后
MaterialButton(
onPressed: () {},
child: SizedBox.expand(
width: double.infinity,
child: Text('Raised Button'),
),
),
答案 2 :(得分:4)
我们可以添加Button内部容器。
解决方案:
Container(
width: double.infinity,
child: RaisedButton(
onPressed: null,
child: Text('NEXT'),
),
)
答案 3 :(得分:1)
您也可以尝试
使用SizedBox
SizedBox(
width: double.maxFinite, // set width to maxFinite
child: RaisedButton(...),
)
使用MaterialButton
的{{1}}属性。
minWidth
答案 4 :(得分:0)
您可以在child:column下插入
crossAxisAlignment:CrossAxisAlignment.stretch
我的代码
我的结果
答案 5 :(得分:0)
在 Flutter 2.+ 中考虑这个解决方案:
ElevatedButton(
style: ElevatedButton.styleFrom(
minimumSize: const Size(double.infinity, double.infinity), // <--- this line helped me
),
onPressed: () {},
child: Icon(
Icons.keyboard_return
),
)
答案 6 :(得分:0)
MaterialButton(
minWidth: MediaQuery.of(context).size.width, // set minWidth to width of the device screen
onPressed: () {},
child: Text("Button"),
)
供参考https://api.flutter.dev/flutter/widgets/MediaQuery-class.html