Skip to content

Instantly share code, notes, and snippets.

@aaronoe
Created March 29, 2018 14:21
Show Gist options
  • Select an option

  • Save aaronoe/4a46e6eef5cdfd8ebc5ee41d0904a522 to your computer and use it in GitHub Desktop.

Select an option

Save aaronoe/4a46e6eef5cdfd8ebc5ee41d0904a522 to your computer and use it in GitHub Desktop.
class ToolbarDemo extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(
actions: <Widget>[
new IconButton(
icon: new Icon(Icons.star),
onPressed: _handleClickFavorite
),
new IconButton(
icon: new Icon(Icons.add),
onPressed: _handleClickAdd
)
],
),
body: new MovieDetailScreen(),
);
}
_handleClickFavorite() {}
_handleClickAdd() {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment