Created
March 8, 2020 14:38
-
-
Save geeksilva97/2b2f91e5830526b879000a411971add7 to your computer and use it in GitHub Desktop.
Rating Dialog - main.dart
This file contains hidden or 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:rating_dialog/src/screens/home_screen.dart'; | |
| void main() => runApp(MyApp()); | |
| class MyApp extends StatelessWidget { | |
| // This widget is the root of your application. | |
| @override | |
| Widget build(BuildContext context) { | |
| return MaterialApp( | |
| title: 'Medium - Rating Dialog', | |
| theme: ThemeData( | |
| primarySwatch: Colors.blue, | |
| ), | |
| home: HomePage(), | |
| ); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment