basic dev setup done

This commit is contained in:
Keegan
2016-01-06 17:28:34 -08:00
parent d23eff9949
commit 58a1a3f498
9 changed files with 173 additions and 8 deletions
+39
View File
@@ -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"
}
]
]