Crates.io | tauri-plugin-sharesheet |
lib.rs | tauri-plugin-sharesheet |
version | 0.0.1 |
source | src |
created_at | 2024-08-29 19:20:41.713392 |
updated_at | 2024-08-29 19:20:41.713392 |
description | Share content with the Android Sharesheet and iOS Share Pane. |
homepage | |
repository | https://github.com/buildyourwebapp/tauri-plugin-sharesheet |
max_upload_size | |
id | 1356641 |
size | 118,811 |
Share content to other apps via the Android Sharesheet or iOS Share Pane.
This plugin requires a Rust version of at least 1.65
There are three general methods of installation that we can recommend.
Install the Core plugin by adding the following to your Cargo.toml
file:
src-tauri/Cargo.toml
[dependencies]
tauri-plugin-sharesheet = "0.0.1"
# alternatively with Git:
tauri-plugin-sharesheet = { git = "https://github.com/buildyourwebapp/tauri-plugin-sharesheet" }
You can install the JavaScript Guest bindings using your preferred JavaScript package manager:
Note: Since most JavaScript package managers are unable to install packages from git monorepos we provide read-only mirrors of each plugin. This makes installation option 2 more ergonomic to use.
pnpm add @buildyourwebapp/tauri-plugin-sharesheet
# or
npm add @buildyourwebapp/tauri-plugin-sharesheet
# or
yarn add @buildyourwebapp/tauri-plugin-sharesheet
# alternatively with Git:
pnpm add https://github.com/buildyourwebapp/tauri-plugin-sharesheet
# or
npm add https://github.com/buildyourwebapp/tauri-plugin-sharesheet
# or
yarn add https://github.com/buildyourwebapp/tauri-plugin-sharesheet
First you need to register the core plugin with Tauri:
src-tauri/src/main.rs
fn main() {
tauri::Builder::default()
.plugin(tauri_plugin_sharesheet::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 } from "@buildyourwebapp/tauri-plugin-sharesheet";
shareText('Tauri is great!');
PRs accepted. Please make sure to read the Contributing Guide before making a pull request.
MIT or APACHE-2.0