-
Notifications
You must be signed in to change notification settings - Fork 159
/
app.json
38 lines (38 loc) · 977 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/latest/latest",
"pages/hotest/hotest",
"pages/node/node",
"pages/topicList/topicList",
"pages/detail/detail"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "V2EX",
"navigationBarTextStyle":"black",
"enablePullDownRefresh":"true"
},
"tabBar": {
"color":"#000",
"selectedColor":"#56abe4",
"backgroundColor":"#fff",
"borderStyle":"white",
"list": [{
"pagePath": "pages/latest/latest",
"text": "最新",
"iconPath":"images/latest.png",
"selectedIconPath":"images/lastest_on.png"
}, {
"pagePath": "pages/hotest/hotest",
"text": "最热",
"iconPath":"images/hotest.png",
"selectedIconPath":"images/hotest_on.png"
}, {
"pagePath": "pages/node/node",
"text": "节点",
"iconPath":"images/node.png",
"selectedIconPath":"images/node_on.png"
}]
}
}