Вы можете использовать Row
, оборачивая своих детей Expanded
:
Row(children: <Widget>[
Expanded(
child: RaisedButton(
child: Text("Approve"),
onPressed: () => null,
),
),
Expanded(
child: RaisedButton(
child: Text("Reject"),
onPressed: () => null,
),
),
Expanded(
child: RaisedButton(
child: Text("Need Revise"),
onPressed: () => null,
),
)
])