Commit 4aac3401 authored by Adam Barth's avatar Adam Barth

examples/widgets/container.dart does not display the buttons

Add a missing Material.

Fixes #1402
parent b5470df8
......@@ -18,8 +18,9 @@ class ContainerApp extends StatelessComponent {
height: 300.0
)
),
new Container(
decoration: new BoxDecoration(backgroundColor: const Color(0xFFFFFF00)),
new Material(
color: const Color(0xFFFFFF00),
child: new Container(
padding: new EdgeDims.symmetric(horizontal: 50.0, vertical: 75.0),
child: new Row(
children: <Widget>[
......@@ -32,6 +33,7 @@ class ContainerApp extends StatelessComponent {
)
]
)
)
),
new Flexible(
child: new Container(
......
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