Guest User

Untitled

a guest
Jul 21st, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. class RandomWordsState extends State<RandomWords> {
  2. ...
  3. @override
  4. Widget build(BuildContext context) {
  5. return Scaffold(
  6. appBar: AppBar(
  7. title: Text('Startup Name Generator'),
  8. actions: <Widget>[
  9. IconButton(icon: Icon(Icons.list), onPressed: _pushSaved),
  10. ],
  11. ),
  12. body: _buildSuggestions(),
  13. );
  14. }
  15. ...
  16. }
Add Comment
Please, Sign In to add comment