Skip to content

Instantly share code, notes, and snippets.

@xrnd
Created July 9, 2018 08:59
Show Gist options
  • Select an option

  • Save xrnd/85fa416fb18e2756a7dcedb185f4847d to your computer and use it in GitHub Desktop.

Select an option

Save xrnd/85fa416fb18e2756a7dcedb185f4847d to your computer and use it in GitHub Desktop.
@override
Widget build(BuildContext context) {
return new MaterialApp(
debugShowCheckedModeBanner: false,
home: new Scaffold(
appBar: new AppBar(primary: true, title: new Text('Flutter-Start')),
body: new Container(
child: new Center(
child: new Column(children: <Widget>[],),
),
),
),
theme: defaultTargetPlatform == TargetPlatform.iOS
? Themes.kIOSTheme
: Themes.kDefaultTheme,
onGenerateRoute: Application.router.generator,
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment