Skip to content

Instantly share code, notes, and snippets.

@fabiomsr
Created December 8, 2019 11:07
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 fabiomsr/5ec3f18fce7f9e106b8b152d5e352cb8 to your computer and use it in GitHub Desktop.
Save fabiomsr/5ec3f18fce7f9e106b8b152d5e352cb8 to your computer and use it in GitHub Desktop.
Widget _createDrawerItem(
{IconData icon, String text, GestureTapCallback onTap}) {
return ListTile(
title: Row(
children: <Widget>[
Icon(icon),
Padding(
padding: EdgeInsets.only(left: 8.0),
child: Text(text),
)
],
),
onTap: onTap,
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment