Files
clay/pebble-clay-example/clay.json
T
2016-01-06 17:28:34 -08:00

40 lines
839 B
JSON

[
{
"type": "static_title",
"text": "My Cool Example App"
},
{
"type": "static_heading1",
"text": "By Keegan Lillo - <a href='http://lillo.me'>Lillo.me</a>"
},
[
{
"type": "input_text",
"app_key": "greeting",
"default": "Hello",
"label": "Greeting",
"attributes": {
"placeholder": "Enter a greeting",
"limit": 10,
"required": true
}
},
{
"type": "input_select",
"app_key": "flavor",
"default": "grape",
"options": [
{ "label": "Berry", "value": "berry" },
{ "label": "Grape", "value": "grape" },
{ "label": "Banana", "value": "banana" }
]
},
{
"type": "input_color",
"app_key": "background",
"default": "0xFF0000",
"label": "Background Color"
}
]
]