Home > Enterprise >  How to make the button not hidden by keyboard in Flutter [Solved]
How to make the button not hidden by keyboard in Flutter [Solved]

Time:09-18

I have an app that has multiple textfields and a button that analyze the data entered. When I fill the textfeilds, the keyboard pops up and hide the button. I want the app to slide up completely away from the keyboard.

FYI: resizeToAvoidBottomInset is set to true, and the main column is wrapped in singlechildview.

Update: added reverse: true to SingleChildScrollView. This solved it!

Button shown Button hidden by keyboard

CodePudding user response:

Just Add this Property in SinglechildScrollview,

reverse: true

It'll resolve your problem.

  • Related