forked from zhengxiaowai/weapp-github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
36 lines (36 loc) · 946 Bytes
/
app.json
File metadata and controls
36 lines (36 loc) · 946 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
{
"pages":[
"pages/trending/trending",
"pages/starts/starts",
"pages/profile/profile"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "black",
"navigationBarTitleText": "WeChat",
"navigationBarTextStyle":"white",
"enablePullDownRefresh": true
},
"tabBar": {
"color":"#ccc",
"selectedColor":"black",
"backgroundColor":"#EEEEEE",
"borderStyle":"white",
"list": [{
"pagePath": "pages/trending/trending",
"text": "Treding",
"iconPath":"images/trending.png",
"selectedIconPath":"images/trending.png"
}, {
"pagePath": "pages/starts/starts",
"text": "Starts",
"iconPath":"images/starts.png",
"selectedIconPath":"images/startsHL.png"
}, {
"pagePath": "pages/profile/profile",
"text": "Profile",
"iconPath":"images/profile.png",
"selectedIconPath":"images/profileHL.png"
}]
}
}