tauri-plugin-sharekit 0.1.4

A Tauri v2 plugin that enables sharing content with the Android and iOS native sharing interfaces.
Documentation
1
2
3
4
5
6
7
8
const COMMANDS: &[&str] = &["share_text", "share_file"];

fn main() {
    tauri_plugin::Builder::new(COMMANDS)
        .android_path("android")
        .ios_path("ios")
        .build();
}