My First Widget: xkcd on my phone

I made my first widget and I figured there’s probably enough xkcd fans here that it was worth a share. It shows the latest comic with the alt text.

I hope someone enjoys this, and I’m open to any ideas to make it better :slight_smile:

Shortcut


The details on that last action

Widget Content



Widget

Widget Content JSON

{
  "type": "column",
  "children": [
    {
      "type": "text",
      "value": "[[input2]]"
    },
    {
      "type": "image",
      "value": {
        "aspectRatio": "fit",
        "imageURL": "[[input0]]"
      }
    },
    {
      "type": "row",
      "properties": {
        "fillDirection": "width"
      },
      "children": [
        {
          "type": "text",
          "value": "[[input1]]",
          "properties": {
            "font": {
              "size": 10
            },
            "padding": {
              "leading": 8,
              "trailing": 8
            }
          }
        }
      ]
    }
  ]
}

And the result :smile_cat:

It was an appropriate for this post :joy:

4 Likes