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.