Unverified Commit 975ea595 authored by Michael Goderbauer's avatar Michael Goderbauer Committed by GitHub

Fix missing const analyzer warning (#26716)

Introduced by merging an old PR (https://github.com/flutter/flutter/pull/21157).
parent 649f49d4
......@@ -91,8 +91,8 @@ void main() {
notification = value;
return false;
},
child: SingleChildScrollView(
child: const SizedBox(height: 1200.0)
child: const SingleChildScrollView(
child: SizedBox(height: 1200.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