Merge pull request #2109 from collinjackson/no_material

Remove redundant Material from start project
This commit is contained in:
Collin Jackson 2016-02-23 12:33:14 -08:00
commit 263e2e7ff3

View File

@ -275,12 +275,10 @@ class _FlutterDemoState extends State<FlutterDemo> {
toolBar: new ToolBar(
center: new Text('Flutter Demo')
),
body: new Material(
child: new Center(
child: new Text(
'Button tapped $_counter times.',
key: const ValueKey('counter')
)
body: new Center(
child: new Text(
'Button tapped $_counter times.',
key: const ValueKey('counter')
)
),
floatingActionButton: new FloatingActionButton(