forked from johncalvinroberts/hackathon_frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
executable file
·34 lines (33 loc) · 809 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
{
"pages":[
"pages/events/events",
"pages/event/event",
"pages/profile/profile",
"pages/checkin/checkin"
],
"window":{
"backgroundTextStyle":"light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "FitFam",
"navigationBarTextStyle":"black"
},
"tabBar": {
"backgroundColor": "#A3DE82",
"selectedColor": "#FB5D6E",
"color": "#FBFFE9",
"list": [
{
"pagePath": "pages/events/events",
"iconPath": "images/workoutWhite.png",
"selectedIconPath": "images/workoutRed.png",
"text": "Workouts"
},
{
"pagePath": "pages/profile/profile",
"iconPath": "images/profileWhite2.png",
"selectedIconPath": "images/profileRed2.png",
"text": "Profile"
}
]
}
}