-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
39 lines (39 loc) · 1.01 KB
/
app.json
File metadata and controls
39 lines (39 loc) · 1.01 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
{
"pages":[
"pages/homepage/homepage",
"pages/index/index",
"pages/logs/logs"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "小本本Pro",
"navigationBarTextStyle":"black"
},
"tabBar": {
"color": "#757575",
"selectedColor": "#4396ee",
"borderStyle": "white",
"backgroundColor": "white",
"list": [
{
"text": "此刻",
"pagePath": "pages/homepage/homepage",
"iconPath": "images/bottom_nav_home.png",
"selectedIconPath": "images/bottom_nav_home_selected.png"
},
{
"text": "回忆",
"pagePath": "pages/index/index",
"iconPath": "images/bottom_nav_love.png",
"selectedIconPath": "images/bottom_nav_love_selected.png"
},
{
"text": "我们",
"pagePath": "pages/logs/logs",
"iconPath": "images/bottom_nav_me.png",
"selectedIconPath": "images/bottom_nav_me_selected.png"
}
]
}
}