Search code examples
fluttersoft-keyboard

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?


Solution

  • Setting resizeToAvoidBottomInset to false should do it

    Scaffold(
    resizeToAvoidBottomInset: false,
    body:..
    )