Skip to content

Instantly share code, notes, and snippets.

@termosa
Created May 22, 2019 06:19
Show Gist options
  • Save termosa/db568977ba3d8390c064b08e1419c09b to your computer and use it in GitHub Desktop.
Save termosa/db568977ba3d8390c064b08e1419c09b to your computer and use it in GitHub Desktop.
[An Introduction to Flutter: The Interface] Named routes
MaterialApp(
initialRoute: '/',
routes: {
'/': (context) => MainScreen(),
'/sub': (context) => SubScreen(),
},
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment