我希望水平地将我的两个按钮彼此相邻显示.到目前为止,我只能从上到下显示它们.
使用以下代码,我需要更改什么?
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,
),
],
),
),
Run Code Online (Sandbox Code Playgroud)