Forum Archive

Keyboard “below target”

3448689

Hello!
The keyboard overlaps the textfield. What attribute is needed for the textfield or in some other way to specify that the textfield is always above the keyboard?
Thanks!

3448689

I don't like the idea of a huge ScrollView.

3448689

in kivy it is solved this way:

```
from kivy.core.window import Window

Window.softinput_mode = ‘below_target’
``