Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. class MyApp extends StatelessWidget {
  2. // This widget is the root of your application.
  3. @override
  4. Widget build(BuildContext context) {
  5. return MaterialApp(
  6. title: 'Flutter Demo',
  7. debugShowCheckedModeBanner: false,
  8. theme: ThemeData(
  9. hintColor: Color(0xFFC0F0E8),
  10. primaryColor: Color(0xFF80E1D1),
  11. canvasColor: Colors.transparent),
  12. fontFamily: "Montserrat",
  13. home: Home(),
  14. );
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement