Created
July 25, 2019 05:13
-
-
Save ipondroid/62043480d14e048fd938e8ed969c0c27 to your computer and use it in GitHub Desktop.
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
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
title: 'Flutter Demo', | |
initialRoute: '/', | |
routes: { | |
'/': (BuildContext context) => HomePage(), | |
'/page1': (BuildContext context) => Page1(), | |
'/page4': (BuildContext context) => Page4(), | |
}, | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment