Share content to other apps via native sharing interfaces on Android, iOS, macOS and Windows.
This plugin requires a Rust version of at least 1.65
There are three general methods of installation that we can recommend.
- Use crates.io and npm (easiest, and requires you to trust that our publishing pipeline worked)
- Pull sources directly from Github using git tags / revision hashes (most secure)
- Git submodule install this repo in your tauri project and then use file protocol to ingest the source (most secure, but inconvenient to use)
Install the Core plugin by adding the following to your Cargo.toml file:
src-tauri/Cargo.toml
[dependencies]
tauri-plugin-sharekit = "0.3"
# alternatively with Git:
tauri-plugin-sharekit = { git = "https://github.com/Choochmeque/tauri-plugin-sharekit" }You can install the JavaScript Guest bindings using your preferred JavaScript package manager:
pnpm add @choochmeque/tauri-plugin-sharekit-api
# or
npm add @choochmeque/tauri-plugin-sharekit-api
# or
yarn add @choochmeque/tauri-plugin-sharekit-api
# alternatively with Git:
pnpm add https://github.com/Choochmeque/tauri-plugin-sharekit
# or
npm add https://github.com/Choochmeque/tauri-plugin-sharekit
# or
yarn add https://github.com/Choochmeque/tauri-plugin-sharekitFirst you need to register the core plugin with Tauri:
src-tauri/src/main.rs
fn main() {
tauri::Builder::default()
.plugin(tauri_plugin_sharekit::init())
.run(tauri::generate_context!())
.expect("error while running tauri application");
}Afterwards all the plugin's APIs are available through the JavaScript guest bindings:
import { shareText, shareFile } from "@choochmeque/tauri-plugin-sharekit-api";
// Share text
await shareText('Tauri is great!');
// Share a file
await shareFile('file:///path/to/document.pdf', {
mimeType: 'application/pdf',
title: 'My Document'
});
// Share with position (iPad/macOS only)
// x and y are in webview coordinates (pixels from top-left)
await shareText('Hello!', {
position: { x: 100, y: 200, preferredEdge: 'bottom' }
});PRs accepted. Please make sure to read the Contributing Guide before making a pull request.
MIT