Skip to content

Instantly share code, notes, and snippets.

@RafaelBarbosatec
Created September 4, 2018 03:46
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 RafaelBarbosatec/b437b656f2dc694dde1150e66182753f to your computer and use it in GitHub Desktop.
Save RafaelBarbosatec/b437b656f2dc694dde1150e66182753f to your computer and use it in GitHub Desktop.
return new MaterialApp(
title: 'Flutter News',
theme: new ThemeData(
primarySwatch: Colors.blue,
),
home: new NoticeList(),
routes: <String, WidgetBuilder> {
'/screen1': (BuildContext context) => new Screen1(),
'/screen2' : (BuildContext context) => new Screen2()
},
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment