Advertisement
Guest User

Untitled

a guest
Jul 21st, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. void main() => runApp(MyApp());
  2.  
  3. class MyApp extends StatelessWidget {
  4. @override
  5. Widget build(BuildContext context) {
  6. return MaterialApp(
  7. title: 'Material App',
  8. initialRoute: "/",
  9. theme: ThemeData(fontFamily: "Poppins"),
  10. routes: {
  11. "/": (context) => SplashView(),
  12. "/onboard": (context) => OnBoardingView(),
  13. "/login": (context) => LoginView(),
  14. },
  15. );
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement