Phil D
Phil D

Reputation: 94

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.

Upvotes: 0

Views: 1041

Answers (1)

Tolga Kartal
Tolga Kartal

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

Related Questions