Skip to content

Instantly share code, notes, and snippets.

@rohan20
Created August 6, 2018 07:00
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 rohan20/233e8c1666034144747d3195fb704599 to your computer and use it in GitHub Desktop.
Save rohan20/233e8c1666034144747d3195fb704599 to your computer and use it in GitHub Desktop.
E-Commerce app using Flutter - Part 1: The User Interface
@override
Widget build(BuildContext context) {
return Row(
mainAxisSize: MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
_buildProductItemCard(context),
_buildProductItemCard(context),
],
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment