Fix missing const analyzer warning (#26716)
Introduced by merging an old PR (https://github.com/flutter/flutter/pull/21157).
This commit is contained in:
committed by
GitHub
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)
|
||||
)
|
||||
));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user