After I update my flutter with command flutter pub upgrade
, this function isn't defined anymore, any solution for this..
Asked
Active
Viewed 8,131 times
18

ComaXD EA1
- 405
- 5
- 13
1 Answers
36
Yes, actually, there is a comment inside of the API.
This flag is deprecated. Please use resizeToAvoidBottomInset instead.
So the idea would be to replace the behaviour as stated here.
resizeToAvoidBottomInset param definition:
If true the [body] and the scaffold's floating widgets should size
themselves to avoid the onscreen keyboard whose height is defined by the
ambient [MediaQuery]'s [MediaQueryData.viewInsets] bottom
property.
For example, if there is an onscreen keyboard displayed above the
scaffold, the body can be resized to avoid overlapping the keyboard, which
prevents widgets inside the body from being obscured by the keyboard.

Álvaro Agüero
- 4,494
- 1
- 42
- 39

Max Weber
- 1,081
- 11
- 21