Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save luizmarcus/ac57bf8467362ee8b870f0e33947a0e5 to your computer and use it in GitHub Desktop.
Save luizmarcus/ac57bf8467362ee8b870f0e33947a0e5 to your computer and use it in GitHub Desktop.
Widget _getItem(IconData iconData, String name, String tag) =>
GestureDetector(
child: Card(
child: Padding(
padding: const EdgeInsets.all(10.0),
child: Row(
children: [
Icon(iconData),
Expanded(
child: Text(
name,
textAlign: TextAlign.center,
),
),
],
),
),
),
onTap: () => Navigator.push(
context,
MaterialPageRoute(
builder: (_) => SecondPage(
iconData: iconData,
tag: tag,
text: name,
),
),
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment