Skip to content

Instantly share code, notes, and snippets.

@rohan20
Created August 6, 2018 07:09
Show Gist options
  • Select an option

  • Save rohan20/cd1207a43e483abcf1857d45a574e857 to your computer and use it in GitHub Desktop.

Select an option

Save rohan20/cd1207a43e483abcf1857d45a574e857 to your computer and use it in GitHub Desktop.
E-Commerce app using Flutter - Part 1: The User Interface
_buildProductItemCard(BuildContext context) {
return InkWell(
onTap: () {
Navigator.of(context).pushNamed(Constants.ROUTE_PRODUCT_DETAIL);
},
child: Card(
//rest of the widget
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment