Reputation: 11
When I use Flutter, when the keyboard is closed, there will be a short white screen under the page before I can see the content.
Upvotes: 1
Views: 613
Reputation: 10963
It's because the body of the Scaffold
gets resized when you open the keyboard
You can avoid the resizing with resizeToAvoidBottomInset: false
or use another backgroundColor
on the Scaffold
Upvotes: 4