-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
59 lines (58 loc) · 1.63 KB
/
app.json
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
{
"pages": [
"pages/index/index",
"pages/logs/logs",
"pages/makerspaces/makerspaces",
"pages/equipments/equipments",
"pages/projects/projects",
"pages/one_project/one_project",
"pages/one_equip/one_equip",
"pages/one_space/one_space",
"pages/bookings/bookings",
"pages/confirm_message/confirm_message",
"pages/scan/scan"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "Māk:it",
"navigationBarTextStyle": "black"
},
"tabBar": {
"color": "#72858f",
"selectedColor": "#72858f",
"list": [
{
"pagePath": "pages/index/index",
"text": "Home",
"iconPath": "images/icons/home_logo.png",
"selectedIconPath": "images/icons/home_logo_color.png"
},
{
"pagePath": "pages/projects/projects",
"text": "Projects",
"iconPath": "images/icons/prototype_logo.png",
"selectedIconPath": "images/icons/prototype_logo_color.png"
},
{
"pagePath": "pages/equipments/equipments",
"text": "Equipments",
"iconPath": "images/icons/equipment_logo.png",
"selectedIconPath": "images/icons/equipment_logo_color.png"
},
{
"pagePath": "pages/makerspaces/makerspaces",
"text": "Makerspaces",
"iconPath": "images/icons/address_logo.png",
"selectedIconPath": "images/icons/address_logo_color.png"
}
]
},
"usingComponents": {},
"sitemapLocation": "sitemap.json",
"permission": {
"scope.userLocation": {
"desc": "Show the closest makerspace"
}
}
}