-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathitembase2.yml
65 lines (65 loc) · 1.06 KB
/
itembase2.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"main_set": {
"type": "TabViewSet",
"items": {
"dashboard_view": {
"type": "ViewSetItem",
"title": "Dashboard",
"icon": "path/to/icon.png",
"tag": "1",
"view": "@dashboard"
},
"collection_view": {
"type": "ViewSetItem",
"title": "Collection",
"icon": "path/to/icon.png",
"tag": "1",
"view": "@collection"
}
}
},
"collection_set": {
"type": "NavigationViewSet",
"items": {
"item_view": {
"type": "ViewSetItem",
"title": "Item",
"view": "@item"
}
}
},
"title_bar": {
"type": "Bar",
"id": "application_title",
"colour": "#121212",
"objects": {
"collection_value_button": {
"type": "Button",
"id": "collection_value",
"align": "right",
"width":"20pt",
"height":"10pt",
"caption": "0 €"
}
}
},
"dashboard": {
"type": "View",
"contents": {
"label_hello": {
"type": "Label",
"caption": "Hello!"
}
}
},
"collection": {
"type": "View"
},
"item": {
"type": "View"
},
"itembase": {
"type": "Application",
"start": "@main_set"
}
}