Is it possible to have a `TextField` but when user...
# compose
z
Is it possible to have a
TextField
but when user clicks on it - don't show the keyboard and the cursor 🤔 On the same time have the "focused" highlight of the
TextField
. I came across SofttwareKeyboardController class but it seems like it's suited for other use cases
✔️ 1
Turns out one of the parameters of
TextField
does exactly what I need -
readOnly
. Somehow I missed it when looking at them.