Vinh Nguyễn
Vinh Nguyễn

Reputation: 145

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.

This is picture 1

This is picture 2

Upvotes: 1

Views: 302

Answers (1)

timilehinjegede
timilehinjegede

Reputation: 14053

You can fix this by setting the property resizeToAvoidBottomInset to false.

It works fine.

     Scaffold(
        resizeToAvoidBottomInset: false,
        body: .....,
      ),

Upvotes: 2

Related Questions