Skip to content

Instantly share code, notes, and snippets.

@tirth-aubergine
Created December 5, 2019 09:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tirth-aubergine/889490d517c2eb6e7a3442fca26f76a0 to your computer and use it in GitHub Desktop.
Save tirth-aubergine/889490d517c2eb6e7a3442fca26f76a0 to your computer and use it in GitHub Desktop.
ResultScreen - Initial
Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: <Widget>[
FlatButton(
onPressed: () {
// Download
},
child: Icon(Icons.file_download),
),
FlatButton(
onPressed: () {
// View
},
child: Icon(Icons.open_in_new),
),
FlatButton(
onPressed: () {
// Share
},
child: Icon(Icons.share),
),
],
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment