Juan Casas
Juan Casas

Reputation: 122

Input field being cut off by keyboard

The keyboard is cutting off part of the input field

I am using a TextFormField

keyboard cutting off part of input field

is there anyway to push the screen up?

Upvotes: 1

Views: 256

Answers (2)

Sparko Sol
Sparko Sol

Reputation: 717

You can add scroll padding in TextFormField

scrollPadding: const EdgeInsets.only(bottom: 50),

Upvotes: 0

Emre Faruk KOLAÇ
Emre Faruk KOLAÇ

Reputation: 532

Setting resizeToAvoidBottomInset to false should do it

Scaffold(
resizeToAvoidBottomInset: false,
body:..
)

Upvotes: 1

Related Questions