Skip to content

Instantly share code, notes, and snippets.

@geeksilva97
Created March 8, 2020 14:38
Show Gist options
  • Select an option

  • Save geeksilva97/2b2f91e5830526b879000a411971add7 to your computer and use it in GitHub Desktop.

Select an option

Save geeksilva97/2b2f91e5830526b879000a411971add7 to your computer and use it in GitHub Desktop.
Rating Dialog - main.dart
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