【发布时间】:2018-08-23 02:24:21
【问题描述】:
我想水平显示两个按钮。到目前为止,我只能从上到下显示它们。
使用以下代码,我需要更改什么?
new Container(
child: new Column(
children: <Widget>[
new RaisedButton(
child: new Text("LogIn"),
color: Colors.blueAccent[600],
onPressed: null,
),
new RaisedButton(
child: new Text("SignUp"),
color: Colors.blueAccent[600],
onPressed: null,
),
],
),
),
【问题讨论】:
-
不清楚。您可以编辑您的问题以添加更多详细信息吗?
标签: flutter dart layout flutter-layout flutter-widget