Commit 6a6bf0d3 authored by Adam Barth's avatar Adam Barth

Merge pull request #3020 from abarth/start_app_theme

Be explicit about the theme in the starter app
parents db9a92e5 d645bc74
...@@ -12,6 +12,9 @@ void main() { ...@@ -12,6 +12,9 @@ void main() {
runApp( runApp(
new MaterialApp( new MaterialApp(
title: 'Flutter Demo', title: 'Flutter Demo',
theme: new ThemeData(
primarySwatch: Colors.blue
),
routes: <String, WidgetBuilder>{ routes: <String, WidgetBuilder>{
'/': (BuildContext context) => new FlutterDemo() '/': (BuildContext context) => new FlutterDemo()
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment