Skip to content

Instantly share code, notes, and snippets.

@maffan91
Created September 15, 2019 11:56
Show Gist options
  • Save maffan91/040c187d9e87e4aacb23f8621dbad2bc to your computer and use it in GitHub Desktop.
Save maffan91/040c187d9e87e4aacb23f8621dbad2bc to your computer and use it in GitHub Desktop.
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
initialRoute: '/',
routes: {
'/': (context) => MyHomePage(),
'/profile': (context) => Profile()
},
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment