Skip to content

Instantly share code, notes, and snippets.

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