I'm trying to add QuickLook previews to a SwiftUI app which uses Table().
I've added the .quickLookPreview()
modifier to my Table()
, and added a menu command for invoking it, and if I select that menu item manually, it works fine, but I have two keyboard related issues which are making it difficult to actually ship this functionality:
- When using the
.quickLookPreview()
variant for a set of URLs, keyboard navigation between the quicklook previews only works with left/right arrows, but being invoked by aTable
, it would make much more sense for up/down arrows to navigate through the previews - I set a
.keyboardShortcut()
on the menu command to use Space, since that's the normally-expected shortcut for quicklook, and it doesn't work. If I set it to some random other key (like "a") it does work, but.space
doesn't do anything.