您可以通过将设置
CrossAxisAlignment为Stretch,然后将包裹起来,得到与之类似
Column的内容
IntrinsicWidth;如果您想给它们指定特定的宽度,请使用
stepWidth属性
Center( child: IntrinsicWidth( child: Column( crossAxisAlignment: CrossAxisAlignment.stretch, children: <Widget>[ RaisedButton( child: Text("hello"), onPressed: () {}, ), RaisedButton( child: Text("another hello"), onPressed: () {}, ), RaisedButton( child: Text("DB"), onPressed: () {}, ), ], ), ), ),


