-
Notifications
You must be signed in to change notification settings - Fork 41
/
app.json
38 lines (38 loc) · 1002 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
34
35
36
37
38
{
"pages":[
"pages/explore/explore",
"pages/search/search",
"pages/profile/profile",
"pages/detail/detail",
"pages/user/user"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "500px",
"navigationBarTextStyle":"black",
"enablePullDownRefresh": true
},
"tabBar": {
"color":"#000",
"selectedColor":"#2980b9",
"backgroundColor":"#fff",
"borderStyle":"white",
"list": [{
"pagePath": "pages/explore/explore",
"text": "Explore",
"iconPath":"images/editor-off.png",
"selectedIconPath":"images/editor-on.png"
}, {
"pagePath": "pages/search/search",
"text": "Search",
"iconPath":"images/search-off.png",
"selectedIconPath":"images/search-on.png"
}, {
"pagePath": "pages/profile/profile",
"text": "Profile",
"iconPath":"images/profile-off.png",
"selectedIconPath":"images/profile-on.png"
}]
}
}