Expand description
Native dialog (open / save) handler atoms.
Modules§
- Dialog
Filter - Tauri-shaped filter entry for native open/save dialogs. Pairs a
human-readable category name (“VSIX Extensions”) with a list of
extensions (
["vsix"]). Consumed bytauri_plugin_dialog’sadd_filter(name, &[&str])once the list is flattened. - Parse
Dialog Filters - Parse
options.filtersfrom a VS CodeshowOpenDialogcall into theDialogFiltershape the Tauri dialog plugin accepts. Silently skips malformed or empty entries - the user still gets the picker, just without the filter hint. - Show
Open Dialog nativeHost:showOpenDialoghandler. Wires VS Code’snativeHostService.showOpenDialog(options)contract to Tauri’s dialog plugin.