Home > Net >  Input field being cut off by keyboard
Input field being cut off by keyboard

Time:11-07

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?

CodePudding user response:

Setting resizeToAvoidBottomInset to false should do it

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