Results 22 issues of narodnik

Proposed API: ``` fn key_event(KeyEvent, KeyPhase); ``` KeyEvent then has this API: https://doc.qt.io/qt-6/qkeyevent.html KeyPhase has Press, Release, Canceled Check this log: ``` char_event(") shift=true, repeat=false char_event(") shift=true, repeat=true char_event(") shift=true,...

### Steps to reproduce I am implementing my own custom EditText without relying on the Android ones. To do so in my view, I override `onCreateInputConnection()` to return a custom...