If I have a `TextField` and I enter a screen, it ...
# compose
u
If I have a
TextField
and I enter a screen, it doesn't have focus, no keyboard is opened. If I tap it, it gets focused, keyboard opens. If I close the screen, and then come back to it again, focus is somehow preserved, and keyboard opens automatically I don't want that (for a chat ui).
I want the keyboard to never auto-open when I enter the screen.
Any way to fix this? I'm trying the
keyboardOptions.showKeyboardOnFocus = false
but doesn't seem to have an effect I think it's that the focus is preserved somehow across screen boundaries. Is there a way to scope it?