Reputation: 145
After I clicked on the line to edit the text, my keyboard appeared too high, making the interface look like it was corrupted.
Upvotes: 1
Views: 302
Reputation: 14053
You can fix this by setting the property resizeToAvoidBottomInset
to false.
It works fine.
Scaffold(
resizeToAvoidBottomInset: false,
body: .....,
),
Upvotes: 2