Skip to content

Instantly share code, notes, and snippets.

@gladimdim
Created April 11, 2019 09:52
Show Gist options
  • Save gladimdim/e8e0fa363dfc1345baf9f5c23766e5d2 to your computer and use it in GitHub Desktop.
Save gladimdim/e8e0fa363dfc1345baf9f5c23766e5d2 to your computer and use it in GitHub Desktop.
Widget _buildButton() {
return Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Padding(
padding: const EdgeInsets.only(right: 8.0),
child: RaisedButton.icon(
icon: Icon(Icons.call),
onPressed: addCall,
label: Text("Add Call"),
),
),
RaisedButton.icon(
icon: Icon(Icons.call_made),
onPressed: endCall,
label: Text("End Random Call"),
)
],
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment