David Herman
05/01/2022, 8:25 PMonKeyEvent
for a Window
, and it's giving me a KeyEvent
, but I'm not sure how to tell if that event represents a typeable character or not without simply creating a huge mapping of Key to chars myself.KeyEvent
comes with a useful keyChar
property you can use. Is this just currently missing in Desktop Compose?nativeKeyEvent
to an AWT KeyEvent
so I can do that, but I'm wondering if there's a more elegant way.