Skip to content

Instantly share code, notes, and snippets.

@ijoschek
Last active April 7, 2019 10:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ijoschek/8e071c672f5de7f1389e12694ab1fa03 to your computer and use it in GitHub Desktop.
Save ijoschek/8e071c672f5de7f1389e12694ab1fa03 to your computer and use it in GitHub Desktop.
flutter_nav_tut
// ...
class Main extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
// ...
home: MainPage(),
routes: {
'/newPage': (context) => NewPage(),
},
);
}
}
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment