I have a simple OutlinedTextField
with a label and text.
By the design, it should not be focused and/or typeable.
On the click event, the app should open a "picker" dialog and on a pick, the value of TextField
should be updated.
So, as a result, the TextField, shouldn't:
- be focusable
- open keyboard
- accept text insertion or input It should:
- be clickable
As a backup option, I tried to make a simple Text
look like an OutlinedTextField
I think it is more difficult to make it look the same as OutlinedTextField
.
Any suggestions?