Skip to content

Instantly share code, notes, and snippets.

@rohan20
Last active August 6, 2018 06:57
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/ce3da7b613a32332a910867ed170ef35 to your computer and use it in GitHub Desktop.
Save rohan20/ce3da7b613a32332a910867ed170ef35 to your computer and use it in GitHub Desktop.
E-Commerce app using Flutter - Part 1: The User Interface
@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