Skip to content

Instantly share code, notes, and snippets.

@VB10
Last active July 9, 2019 20:22
Show Gist options
  • Select an option

  • Save VB10/89823d500a2ca908e91457e6df0388c6 to your computer and use it in GitHub Desktop.

Select an option

Save VB10/89823d500a2ca908e91457e6df0388c6 to your computer and use it in GitHub Desktop.
Healtho Main
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