-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
41 lines (38 loc) · 926 Bytes
/
app.json
File metadata and controls
41 lines (38 loc) · 926 Bytes
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
{
"pages": [
"pages/logs/logs",
"pages/index/index",
"pages/show/show",
"pages/list/list"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "BIT DNA Guardian",
"navigationBarTextStyle": "black"
},
"style": "v2",
"sitemapLocation": "sitemap.json",
"tabBar": {
"color": "#808080",
"selectedColor": "#FF0000",
"backgroundColor": "#FFFFFFF",
"list": [
{
"pagePath": "pages/logs/logs",
"iconPath": "image/_home.png",
"selectedIconPath": "image/home.png"
},
{
"pagePath": "pages/list/list",
"iconPath": "image/_inc.png",
"selectedIconPath": "image/inc.png"
},
{
"pagePath": "pages/index/index",
"iconPath": "image/_img.png",
"selectedIconPath": "image/img.png"
}
]
}
}