I'm wondering, do I need to use `focusable` or so...
# compose-desktop
a
I'm wondering, do I need to use
focusable
or some other focus modifier for
onKeyEvent
modifier to be called on a composable? I'm trying to implement keyboard navigation in a
LazyVerticalGrid
with a selected cell, but
onKeyEvent
isn't being called. I've used the
Window
onKeyEvent so far but I have several composables in the window that need keyboard navigation and so I want to have precedence order based on who is in focus :)