Search code examples
flutterdartkeyboardfocus

Is there any way to push Widget above of the Keyboard when it shows up?


I uses TextFormField with Scrollable parent, when the keyboard shows up, is there any way to have the Widgets to be above the keyboard? Is it FocusNode that I should be using?

Current Situation

From this, you can see that when my keyboard shows up, the Button will be covered.


Solution

  • If you can, just put all widgets which needs to stay over the keyboard in a SingleChildScrollView, and set reverse property of the SingleChildScrollView to true