Last active
August 6, 2018 06:57
-
-
Save rohan20/ce3da7b613a32332a910867ed170ef35 to your computer and use it in GitHub Desktop.
E-Commerce app using Flutter - Part 1: The User Interface
This file contains 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
@override | |
Widget build(BuildContext context) { | |
this.context = context; | |
return Scaffold( | |
appBar: AppBar( | |
centerTitle: true, | |
backgroundColor: Colors.white, | |
title: Text( | |
"PRODUCT LIST", | |
style: TextStyle( | |
color: Colors.black, | |
), | |
), | |
), | |
body: _buildProductsListPage(), | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment