Advertisement
AlokMishra

main.dart

Dec 9th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.42 KB | None | 0 0
  1. import 'package:flutter/material.dart';
  2.  
  3. import 'SignUp.dart';
  4.  
  5. void main() => runApp(MyApp());
  6.  
  7. class MyApp extends StatelessWidget {
  8.   // This widget is the root of your application.
  9.   @override
  10.   Widget build(BuildContext context) {
  11.     return MaterialApp(
  12.       debugShowCheckedModeBanner: false,
  13.       theme: ThemeData(
  14.         primarySwatch: Colors.blue,
  15.       ),
  16.       home: SignUpPage(),
  17.     );
  18.   }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement