mirror of
https://github.com/pebble-dev/clay.git
synced 2026-09-05 16:47:37 -04:00
basic dev setup done
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
[
|
||||
{
|
||||
"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"
|
||||
}
|
||||
]
|
||||
]
|
||||
Reference in New Issue
Block a user