Skip to content

Instantly share code, notes, and snippets.

@mehmetf
Created September 3, 2017 03:22
Show Gist options
  • Save mehmetf/c7aa7c63a21c56cb50f0b0ef2dbf887b to your computer and use it in GitHub Desktop.
Save mehmetf/c7aa7c63a21c56cb50f0b0ef2dbf887b to your computer and use it in GitHub Desktop.
var navItems = <NavigationItem>[
new NavigationItem(
icon: const Icon(Icons.home),
title: 'Home',
onTap: () => Navigator.pushNamed(context, '/')),
new NavigationItem(
icon: const Icon(Icons.change_history),
title: 'Hidden',
onTap: () => Navigator.pushNamed(context, '/hidden')),
];
var navMenu = new NavigationMenu(items: navItems);
return new Scaffold(
...
drawer: navMenu.drawer,
bottomNavigationBar: navMenu.bottomBar,
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment