what is the difference between `onPreviewKeyEvent`...
# compose
o
what is the difference between
onPreviewKeyEvent
vs
onKeyEvent
l
Preview key is like
PointerEventPass.Initial
, where parent callbacks gets invoked first, while the other one is like
PointerEventPass.Main
, where child callbacks gets invoked first. Preview always happens first.
350 Views