Commit 8ab9a8fe authored by Collin Jackson's avatar Collin Jackson

Remove redundant Material from project created by flutter create

parent 3f8fdb66
......@@ -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(
......
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