Created
August 6, 2018 07:09
-
-
Save rohan20/cd1207a43e483abcf1857d45a574e857 to your computer and use it in GitHub Desktop.
E-Commerce app using Flutter - Part 1: The User Interface
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
| _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