forked from unmagic/wechat-im
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
executable file
·33 lines (33 loc) · 869 Bytes
/
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
{
"pages": [
"pages/chat-list/chat-list",
"pages/chat/chat",
"pages/chat-input/chat-input",
"pages/friends/friends"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle": "black"
},
"tabBar": {
"selectedColor": "#35c8fb",
"color": "#7f8389",
"list": [
{
"pagePath": "pages/chat-list/chat-list",
"text": "会话列表",
"iconPath": "image/tabbar/chat_list_unselected.png",
"selectedIconPath": "image/tabbar/chat_list.png"
},
{
"pagePath": "pages/friends/friends",
"text": "好友列表",
"iconPath": "image/tabbar/friend_unselected.png",
"selectedIconPath": "image/tabbar/friend.png"
}
]
},
"sitemapLocation": "sitemap.json"
}