Reputation: 122
The keyboard is cutting off part of the input field
I am using a TextFormField
is there anyway to push the screen up?
Upvotes: 1
Views: 256
Reputation: 717
You can add scroll padding in TextFormField
scrollPadding: const EdgeInsets.only(bottom: 50),
Upvotes: 0
Reputation: 532
Setting resizeToAvoidBottomInset
to false
should do it
Scaffold(
resizeToAvoidBottomInset: false,
body:..
)
Upvotes: 1