'Flutter _ How to fix display error of this keyboard
After I clicked on the line to edit the text, my keyboard appeared too high, making the interface look like it was corrupted.


Solution 1:[1]
You can fix this by setting the property resizeToAvoidBottomInset to false.
It works fine.
Scaffold(
resizeToAvoidBottomInset: false,
body: .....,
),
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | halfer |
