-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathapp.json
37 lines (37 loc) · 834 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
{
"pages": [
"pages/index/index",
"pages/list/index"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "Flappy Bird",
"navigationBarTextStyle": "black"
},
"tabBar": {
"borderStyle": "white",
"color": "#000000",
"selectedColor": "#B45F06",
"backgroundColor": "#1DC6F1",
"list": [
{
"iconPath": "images/1.1.png",
"selectedIconPath": "images/1.2.png",
"pagePath": "pages/index/index",
"text": "游戏"
},
{
"iconPath": "images/2.1.png",
"selectedIconPath": "images/2.2.png",
"pagePath": "pages/list/index",
"text": "排行榜"
}
]
},
"networkTimeout": {
"request": 10000,
"downloadFile": 10000
},
"debug": true
}