handleTextInput: (view, from, to, text) => {
console.log(view.composing, from, to, text)
return false
}
When I’m using the input method, I try to get view.composing, and it always returns true.
This shouldn’t be correct. When the user finishes typing, view.composing should return false. Otherwise, developers cannot determine whether the user has finished inputting.

It’s worth noting that when I use setTimeout to retrieve view.composing, it works normally.
handleTextInput: (view, from, to, text) => {
setTimeout(() => {
console.log(view.composing, from, to, text)
})
return false
}
