Created
August 6, 2018 06:51
-
-
Save rohan20/d86378d40bf0b9c18262c841cf455014 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
import 'package:flutter/material.dart'; | |
import 'package:products_tutorial/pages/products_list_page.dart'; | |
import 'package:products_tutorial/util/routes.dart'; | |
void main() { | |
runApp( | |
MaterialApp( | |
home: ProductsListPage(), | |
routes: Routes.routes, | |
), | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment