Created
November 13, 2022 19:58
-
-
Save josue1dario2/8b27bfe5d80437a009d775ecf5307adc to your computer and use it in GitHub Desktop.
Routes Flutter
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
@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