tauri-plugin-widgets 0.4.1

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.
{
  "version": 1,
  "small": {
    "type": "vstack",
    "spacing": 8,
    "padding": 12,
    "background": "#1a1a2e",
    "children": [
      { "type": "text", "content": "Hello", "fontSize": 18, "fontWeight": "bold", "color": "#fff", "alignment": "center" },
      { "type": "hstack", "spacing": 4, "children": [
        { "type": "shape", "shapeType": "capsule", "size": 8, "fill": "#4CAF50" },
        { "type": "divider" },
        { "type": "spacer" },
        { "type": "progress", "value": 0.5, "tint": "#4CAF50", "label": "OK" }
      ]},
      { "type": "button", "label": "Go", "action": "go", "backgroundColor": "#2196F3", "color": "#fff" }
    ]
  }
}