Created
May 22, 2019 06:19
-
-
Save termosa/db568977ba3d8390c064b08e1419c09b to your computer and use it in GitHub Desktop.
[An Introduction to Flutter: The Interface] Named routes
This file contains 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
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