Open codefrau opened 4 months ago
I bet this is the same issue I observed for autocorrection on Android, e.g., using Gboard (mentioned here).
I bet this is the same issue I observed for autocorrection on Android, e.g., using Gboard (mentioned here).
Yes that’s likely. I think it’s different from the cursor issue though.
I wish both just required implementing two similar edge cases in some keyboard event handler functions, but I have not looked into it. :sweat_smile:
While speaking, iOS generates multiple versions of the recognized text. For example if you say "3+4" it will first generate
Three
and then replace that with3+4
. We are not properly deleting theThree
and instead end up withThree3+4
.