Last active
July 9, 2019 20:22
-
-
Save VB10/89823d500a2ca908e91457e6df0388c6 to your computer and use it in GitHub Desktop.
Healtho Main
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
| void main() => runApp(MyApp()); | |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return MaterialApp( | |
| title: 'Material App', | |
| initialRoute: "/", | |
| theme: ThemeData(fontFamily: "Poppins"), | |
| routes: { | |
| "/": (context) => SplashView(), | |
| "/onboard": (context) => OnBoardingView(), | |
| "/login": (context) => LoginView(), | |
| }, | |
| ); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment