is there a way to check if a key is pressed (im in...
# compose
a
is there a way to check if a key is pressed (im interested in shift) when a click happens, or do i need to do this on a platform level? I do not want to use
Modifier.onKeyEvent {}
because i need this to work even if the composable is not focused
e
I think it's on the platform level, i.e. at the Activity for Android, the compose application function for JVM and web, and however that gets handled on ios
👍 1