3448689
Dec 07, 2020 - 19:34
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!
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!
I don't like the idea of a huge ScrollView.
in kivy it is solved this way:
```
from kivy.core.window import Window
Window.softinput_mode = ‘below_target’
``