Unverified Commit 88c94f57 authored by Ian Hickson's avatar Ian Hickson Committed by GitHub

Remove unnecessary consts (#21410)

parent 1658fd94
......@@ -400,15 +400,15 @@ void main() {
home: Material(
child: new Stepper(
steps: const <Step>[
const Step(
title: const Text('A'),
Step(
title: Text('A'),
state: StepState.editing,
content: const SizedBox(width: 100.0, height: 100.0),
content: SizedBox(width: 100.0, height: 100.0),
),
const Step(
title: const Text('B'),
Step(
title: Text('B'),
state: StepState.complete,
content: const SizedBox(width: 100.0, height: 100.0),
content: SizedBox(width: 100.0, height: 100.0),
),
],
),
......
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