Answers for "buttonbar flutter example"

1

buttonbar flutter example

ButtonBar(
  children: <Widget>[
    FlatButton(
      child: Text('Ok'),
      color: Colors.blue,
      onPressed: () {/** */},
    ),
    FlatButton(
      child: Text('Cancel'),
      color: Colors.blue,
      onPressed: () {/** */},
    ),
  ],
)
Posted by: Guest on April-30-2020

Browse Popular Code Answers by Language