Skip to content

Instantly share code, notes, and snippets.

@Nash0x7E2
Created March 17, 2018 03:30
Show Gist options
  • Save Nash0x7E2/400854e48f5ed28f0a9ca41038035f23 to your computer and use it in GitHub Desktop.
Save Nash0x7E2/400854e48f5ed28f0a9ca41038035f23 to your computer and use it in GitHub Desktop.
void main() {
runApp(new MaterialApp(
home: new Landing(),
//new
routes: <String, WidgetBuilder>{
'/page2': (BuildContext context) => new Page2(),
'/page3': (BuildContext context) => new Page3()
},
));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment