mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Fix missing const analyzer warning (#26716)
Introduced by merging an old PR (https://github.com/flutter/flutter/pull/21157).
This commit is contained in:
parent
649f49d4bf
commit
975ea595e9
@ -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)
|
||||
)
|
||||
));
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user