I have uncommon use case of the `TextField` and ke...
# compose
z
I have uncommon use case of the
TextField
and keyboard - I need a
TextField
that can accept key events and act as any other
TextField
but doesn't show the keyboard. The key events will be coming from an external input device. In a View world one could add
android:windowSoftInputMode="stateHidden"
to an
EditText
and the keyboard will not be shown. Is there an alternative in Compose? I was looking at the APIs for controlling Focus and Keyboard, but wasn't able to find a way to do this