-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathapp.json
More file actions
39 lines (39 loc) · 858 Bytes
/
app.json
File metadata and controls
39 lines (39 loc) · 858 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
37
38
39
{
"pages": [
"pages/index/index",
"pages/hot/hot",
"pages/latest/latest",
"pages/topic/topic",
"pages/search/search",
"pages/user/user"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#212121",
"navigationBarTitleText": "V2EX",
"navigationBarTextStyle": "light",
"backgroundColor": "#f4f4f4",
"enablePullDownRefresh": false
},
"tabBar": {
"color": "#999",
"selectedColor": "#fff",
"backgroundColor": "#111111",
"borderStyle": "white",
"position": "bottom",
"list": [
{
"pagePath": "pages/hot/hot",
"text": "最热主题"
},
{
"pagePath": "pages/latest/latest",
"text": "最新主题"
},
{
"pagePath": "pages/search/search",
"text": "查询用户"
}
]
}
}