So I'm coding up this Mutliplatform app in compose...
# compose
c
So I'm coding up this Mutliplatform app in compose, and my keyboard handling receives a
KeyEvent
and does the appropriate things. This works fine for alphanumeric keys. But it doesn't work for keys like "*" since I get key events for "Shift" and "8" and even if I look for that I'm sure it won't survive running on an international keyboard. How do I get the logical keys, not the physical ones?