tauri-plugin-quicklook 0.2.5

A Tauri plugin providing APIs to display and manage the macOS QuickLookUI Preview Pane.
1
2
3
4
5
6
7
8
9
10
11
12
const COMMANDS: &[&str] = &[
    "set_preview_items",
    "set_preview_items_and_show",
    "show_preview_pane",
    "hide_preview_pane",
    "toggle_preview_pane",
    "preview_pane_visible",
];

fn main() {
    tauri_plugin::Builder::new(COMMANDS).build();
}