mirror of
https://github.com/pebble-dev/clay.git
synced 2026-08-28 04:46:57 -04:00
40 lines
839 B
JSON
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"
|
|
}
|
|
]
|
|
]
|