tauri-plugin-widget 0.1.1

A Tauri plugin to interact with App Widgets (Android). Allows your Tauri app to shared preferences (Android), and update timeline widgets.
Documentation
1
2
3
4
5
6
7
8
const COMMANDS: &[&str] = &["set_items", "get_items", "set_register_widget", "reload_all_time_lines", "reload_time_lines", "request_widget"];

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