Skip to content

Page - Help - Example

{
  "root": {
    "id": "*template-page-default"
  },
  "contents": {
    "common": {
      "title-content": {
        "value": { "id": "*text-body-title" }
      },
      "body-content": {
        "value": "*common@text-body-content"
      },
      "action-content": {
        "label": { "id": { "value" : "*button-label-help-to-home"} },
        "action": "navigate://url/page-home"
      }
    }
  },
  "texts": {
    "common": {
      "text-body-title": "Looking for help?",
      "text-body-content": { "id": "*text-body-content-help" },
      "text-action-help": "Navigate to home page"
    }
  }
}

Using the template loaded with subs 📖 Subs Definition.

{
  "root": {
    "id": "template-page-default",
    "subset": "layout-linear",
    "style": {
      "orientation": "vertical",
      "background-color": { "id": "*background:why-not-color" },
      "fill-max-size": true
    },
    "content": {
      "items": [
        {
          "subset": "label",
          "style": {
            "id": "*title-label",
            "font-color": "#FF78FF78"
          },
          "content": {
            "id": "*title-content"
          }
        },
        "*item-spacer",
        {
          "subset": "label",
          "style": {
            "font-size": "18",
            "font-color": {"id":"*blue"}
          },
          "content": "*body-content"
        },
        "*item-spacer",
        {
          "subset": "button",
          "content": {
            "id": "*action-content"
          }          
        }
      ]
    }
  }
}