Created
August 4, 2019 05:04
-
-
Save SAGARSURI/64400ae18de7935a8dc2f87fac47bd5b to your computer and use it in GitHub Desktop.
This file contains 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 'src/ui/homescreen/home_screen.dart'; | |
void main() => runApp(MyApp()); | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
debugShowCheckedModeBanner: false, | |
theme: ThemeData( | |
brightness: Brightness.dark, | |
primaryColor: Color(0xff3A3B56), | |
cardColor: Color(0xff40415D), | |
scaffoldBackgroundColor: Color(0xff3A3B56)), | |
home: HomeScreen(), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment