-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
63 lines (62 loc) · 1.52 KB
/
app.json
File metadata and controls
63 lines (62 loc) · 1.52 KB
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
{
"pages": [
"pages/start/start",
"pages/index/index",
"pages/message/message",
"pages/chat/chat",
"pages/me/me",
"custom_tab_bar/index",
"pages/friends/friends",
"pages/register/register",
"pages/addfriends/addfriends",
"pages/newfriends/newfriends",
"pages/help/help",
"pages/help2/help2"
],
"subPackages": [],
"window": {
"navigationStyle": "custom",
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTextStyle": "black"
},
"style": "v2",
"renderer": "skyline",
"rendererOptions": {
"skyline": {
"defaultDisplayBlock": true,
"disableABTest": true,
"sdkVersionBegin": "3.0.0",
"sdkVersionEnd": "15.255.255"
}
},
"componentFramework": "glass-easel",
"sitemapLocation": "sitemap.json",
"lazyCodeLoading": "requiredComponents",
"tabBar": {
"color": "#7A7E83",
"selectedColor": "#c6e173",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/chat/chat",
"iconPath": "image/chat_no.png",
"selectedIconPath": "image/chat_yes.png",
"text": "Chats"
},
{
"pagePath": "pages/friends/friends",
"iconPath": "image/friends_no.png",
"selectedIconPath": "image/friends_yes.png",
"text": "Friends"
},
{
"pagePath": "pages/me/me",
"iconPath": "image/me_no.png",
"selectedIconPath": "image/me_yes.png",
"text": "Me"
}
]
}
}