tauri-plugin-widgets 0.5.0

Tauri plugin for App Widgets on Android, iOS, and macOS (WidgetKit); Windows Widgets Board (Adaptive Cards) + desktop webview; Linux desktop webview with X11 DESKTOP pin.
Documentation
{
  "id": "toggle-switch",
  "size": "small",
  "action": "toggle_wifi",
  "clickText": "Wi-Fi",
  "assertBeforeTexts": ["Wi-Fi", "", "Network on"],
  "assertAfterTexts": ["Wi-Fi", "Network off"],
  "assertGoneAfter": ["", "Network on"],
  "before": {
    "version": 1,
    "small": {
      "type": "vstack",
      "padding": 12,
      "spacing": 10,
      "cornerRadius": 14,
      "background": "#1C1C1E",
      "children": [
        {
          "type": "toggle",
          "isOn": true,
          "label": "Wi-Fi",
          "tint": "#22c55e",
          "color": "#e2e8f0",
          "action": "toggle_wifi"
        },
        {
          "type": "text",
          "content": "Network on",
          "fontSize": 12,
          "color": "#94a3b8"
        }
      ]
    }
  },
  "after": {
    "version": 1,
    "small": {
      "type": "vstack",
      "padding": 12,
      "spacing": 10,
      "cornerRadius": 14,
      "background": "#1C1C1E",
      "children": [
        {
          "type": "toggle",
          "isOn": false,
          "label": "Wi-Fi",
          "tint": "#22c55e",
          "color": "#e2e8f0",
          "action": "toggle_wifi"
        },
        {
          "type": "text",
          "content": "Network off",
          "fontSize": 12,
          "color": "#94a3b8"
        }
      ]
    }
  }
}