As the title, I got a error message that the singleChildScrollView does not has keyboardDismissBehavior property. Some articles said that this issue is caused by the version of pull_to_refresh package. But I didn't use that package in my project. Please help.
Asked
Active
Viewed 130 times
0
-
What's your Flutter version? – enzo Jul 30 '21 at 03:36
-
@enzo My version is v1.0.0 – Joe Lam Jul 30 '21 at 08:54
1 Answers
0
According to Flutter docs, the keyboardDismissBehavior
parameter is only available in Flutter after v2.2.0:
76312 add keyboardDismissBehavior into SingleChildScrollView (cla: yes, f: scrolling, framework, waiting for tree to go green)
To fix this, just upgrade your Flutter:
flutter upgrade

enzo
- 9,861
- 3
- 15
- 38