Key Press Events
Key presses can be detected at the window level as well as for individual controls (e.g. TextFields). At the window level the onPreviewKeyEvent parameter can be set with some code to be run each time a key is pressed.
Key events have data attached specifying:
- If it was a key press or a key release
- What key was pressed, e.g. Key.A, Key.Up or Key.Enter
- Any modifier keys (e.g. CTRL or ALT)
More info on key handling can be found here and a full list of key codes can be found here.
var status by mutableStateOf("Press a key...")
fun main() = singleWindowApplication(
title = "Key Press Events",
onPreviewKeyEvent = { handleKeyEvent(it) }
) {
App()
}
@Composable
fun App() {
Column() {
Text(status)
}
}
// Show the key pressed/released as status message
// Return true if key event was 'consumed'
fun handleKeyEvent(event:KeyEvent): Boolean {
if (event.type == KeyEventType.KeyDown) {
status = "You pressed ${event.key}"
return true
}
if (event.type == KeyEventType.KeyUp) {
status = "You released ${event.key}"
return true
}
return false // Key event was not consumed
}