-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
42 lines (42 loc) · 1.14 KB
/
app.json
File metadata and controls
42 lines (42 loc) · 1.14 KB
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
41
42
{
"pages": [
"pages/index/index",
"pages/discover/index",
"pages/me/index",
"pages/test/index"
],
"window": {
"navigationBarTitleText": "WeChat",
"backgroundTextStyle": "@backgroundTextStyle",
"navigationBarBackgroundColor": "@navigationBarBackgroundColor",
"navigationBarTextStyle": "@navigationBarTextStyle"
},
"tabBar": {
"color": "tabBarColor",
"selectedColor": "@tabBarSelectedColor",
"backgroundColor": "@tabBarBackgroundColor",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "/images/tabBar/index.png",
"selectedIconPath": "/images/tabBar/index_s.png",
"text": "Home"
},
{
"pagePath": "pages/discover/index",
"iconPath": "/images/tabBar/award.png",
"selectedIconPath": "/images/tabBar/award_s.png",
"text": "Discover"
},
{
"pagePath": "pages/me/index",
"iconPath": "/images/tabBar/mine.png",
"selectedIconPath": "/images/tabBar/mine_s.png",
"text": "Me"
}
]
},
"sitemapLocation": "sitemap.json",
"darkmode": true,
"themeLocation": "theme.json"
}