Commit 01e7c696 authored by Adam Barth's avatar Adam Barth

Fix analyzer warning

parent d7e6f7b7
...@@ -12,7 +12,7 @@ void main() { ...@@ -12,7 +12,7 @@ void main() {
new RenderDecoratedBox(decoration: new BoxDecoration()) new RenderDecoratedBox(decoration: new BoxDecoration())
]; ];
RenderBox grid = new RenderGrid(children: children, maxChildExtent: 100.0); RenderGrid grid = new RenderGrid(children: children, maxChildExtent: 100.0);
RenderingTester tester = layout(grid, constraints: const BoxConstraints(maxWidth: 200.0)); RenderingTester tester = layout(grid, constraints: const BoxConstraints(maxWidth: 200.0));
children.forEach((child) { children.forEach((child) {
......
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