Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. import 'package:flutter/material.dart';
  2. import 'login.dart';
  3. import 'sample_list.dart';
  4. import 'package:flutter_app/tabs.dart';
  5. import 'package:flutter_app/product_list.dart';
  6.  
  7.  
  8. void main() => runApp(MyApp());
  9.  
  10. class MyApp extends StatelessWidget {
  11. // This widget is the root of your application.
  12. @override
  13. Widget build(BuildContext context) {
  14. return MaterialApp(
  15. title: 'Flutter Demo',
  16. theme: ThemeData(
  17. primarySwatch: Colors.red,
  18. ),
  19. home: new Login(),
  20. //home: sampleList(),
  21. //home: new TabDemo(),
  22. //home: listProduct(),
  23. );
  24. }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement