I am working on an OTP input field. Backspace is n...
# compose
f
I am working on an OTP input field. Backspace is not getting triggered on ios. Any workarounds? To reproduce:
Copy code
Modifier.onPreviewKeyEvent { event ->
    if (event.key == Key.Backspace) {
        println("backspace pressed")
    }
}
z
Are you getting any key event for backspace?
f
it seems to be this issue, any workarounds?
z
What issue?
f
@Zach Klippenstein (he/him) [MOD] sorry forgot to add the link. Here you go: https://youtrack.jetbrains.com/issue/CMP-3242