forked from airingursb/miemie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
40 lines (40 loc) · 1.04 KB
/
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
39
40
{
"pages":[
"pages/word/word",
"pages/search/search",
"pages/settings/settings",
"pages/search/detail/detail",
"pages/settings/clause/clause",
"pages/settings/help/help",
"pages/settings/feedback/feedback"
],
"tabBar": {
"backgroundColor" : "#F7F7FA",
"borderStyle": "white",
"list": [{
"pagePath": "pages/word/word",
"text": "单词",
"iconPath": "images/home.png",
"selectedIconPath": "images/home-selected.png"
},
{
"pagePath": "pages/search/search",
"text": "辞典",
"iconPath": "images/search.png",
"selectedIconPath": "images/search-selected.png"
},
{
"pagePath": "pages/settings/settings",
"text": "设置",
"iconPath": "images/settings.png",
"selectedIconPath": "images/settings-selected.png"
}]
},
"window":{
"backgroundTextStyle":"light",
"backgroundColor": "#EFEFF4",
"navigationBarBackgroundColor": "#2C2D31",
"navigationBarTitleText": "咩咩单词",
"navigationBarTextStyle":"white"
}
}