Created
December 8, 2019 11:14
-
-
Save fabiomsr/50c17b3e72fad3bcffbed23966d88420 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
return Drawer( | |
child: ListView( | |
padding: EdgeInsets.zero, | |
children: <Widget>[ | |
_createHeader(), | |
_createDrawerItem(icon: Icons.contacts, text: 'Contacts', onTap: () => ...) | |
Divider(), | |
_createDrawerItem(icon: Icons.event, text: 'Events', onTap: () => ...) | |
], | |
), | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment