Is there any built-in support for `LazyColumn` + k...
# compose-desktop
r
Is there any built-in support for
LazyColumn
+ keyboard arrow navigation between focusable items? I can't see anything, but wanted to check if I'm missing something. I want to be able to press the up/down arrows to move focus between items in the LazyColumn
a
Tab navigation does that, and you can also do it, via
FocusManager.moveFocus(FocusDirection.Next)
r
Thanks for confirming. Looks like I'll have to wire up arrow keys to manually invoke the focus manager. I was just curious if there was any automatic support for this within lists, e.g. like you'd get with an NSTableView in AppKit
After exploring this, I've discovered that moving focus will only move between visible items, seemingly because of the virtualisation that LazyColumn provides. I'm quickly learning that unfortunately focus + LazyColumn/Row is a real weak spot for compose.