The keyboard is cutting off part of the input field
I am using a TextFormField
is there anyway to push the screen up?
CodePudding user response:
Setting resizeToAvoidBottomInset
to false
should do it
Scaffold(
resizeToAvoidBottomInset: false,
body:..
)