- Flutter Widget Livebook

ButtonBar

An end-aligned row of buttons.

Example

ButtonBar(
  children: <Widget>[
    FlatButton(
      child: Text('Ok'),
      color: Colors.blue,
      onPressed: () {/** */},
    ),
    FlatButton(
      child: Text('Cancel'),
      color: Colors.blue,
      onPressed: () {/** */},
    ),
  ],
)

Related Links

  1. Example
  2. Related Links