Value keeps getting deleted automatically inside TextInput field.
Some values are immediately removed while typing in the TextInput field, especially when typing quickly.
Here is that TextInput field code
i think the issue with
reactive()
and live()
, because when i use lazy()
there is no such issue.
Could you help me out with this issue ? Thanks.3 Replies
You said yourself. Don't use
live()
use live(onBlur: true)
. It's just v3 syntaxThanks for the tip but this is just like what
lazy()
does.
Is it possible to use reactive()
since I want to live update?As I said it's just a v3 syntax. Maybe you could use debounce instead