Reputation: 94
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?
From this, you can see that when my keyboard shows up, the Button will be covered.
Upvotes: 0
Views: 1041
Reputation: 633
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
Upvotes: 1