Skip to content

Instantly share code, notes, and snippets.

@bsehovac
bsehovac / README.md
Last active March 19, 2023 13:38
Scriptable JSX Widget Parser

Scriptable JSX Widget

Usage

Here's an example of basic usage:

widgetJSX(`
  <Widget size="medium" background="#1b1b1b:0.5,#1b1b4b:1" padding="10,10,10,10">
 
@bsehovac
bsehovac / scriptable.js
Last active December 12, 2021 13:00
Upcoming Match Scriptable Widget
// Get Team ID from https://www.thesportsdb.com and add it as widget parameter
const TEAM_ID = args.widgetParameter || 133987
const DARK_MODE = true
const widgetSize = config.widgetFamily || 'medium'
const textSize = 9.5
const logoSize = 38
const logoSmallSize = 22
const spacing = { normal: 8, smaller: 6, vs: 5, widget: 10 }