How to disable Spell Checking (autocorect) in a toga.TextInput for Android platform ? #2801
MarusGradinaru
started this conversation in
General
Replies: 1 comment 5 replies
-
This is one strategy that worked for me: text_input = toga.TextInput()
if toga.platform.current_platform == "android":
from android.text import InputType
text_input._impl.native.setInputType(InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS) |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I made an Adroid app with with BeeWare Toga. In it I have a toga.TextInput widget. And when I write someting it underline some words with a red line. I gues this is autocorect... Can I disable somehow this behavior ? My app targets only Android platform.
Beta Was this translation helpful? Give feedback.
All reactions