Skip to content

Instantly share code, notes, and snippets.

@josue1dario2
Created November 13, 2022 19:58
Show Gist options
  • Save josue1dario2/8b27bfe5d80437a009d775ecf5307adc to your computer and use it in GitHub Desktop.
Save josue1dario2/8b27bfe5d80437a009d775ecf5307adc to your computer and use it in GitHub Desktop.
Routes Flutter
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
routes: {
'home': (_) => const HomeScreen(),
'game_screen': (_) => const GameScreen(),
'diary_screen': (_) => const DiaryScreen()
},
initialRoute: 'home');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment