-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.json
More file actions
41 lines (41 loc) · 1.08 KB
/
app.json
File metadata and controls
41 lines (41 loc) · 1.08 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
{
"pages": [
"pages/userLogin/userLogin",
"pages/appointments/appointments",
"pages/opportunity/opportunity",
"pages/showDetail/showDetail",
"pages/createOpportunity/createOpportunity"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#509AFF",
"navigationBarTitleText": "",
"navigationBarTextStyle": "black",
"enablePullDownRefresh": false,
"backgroundColorBottom": " #f8f8f8"
},
"tabBar": {
"selectedColor": "#1296db",
"list": [
{
"pagePath": "pages/appointments/appointments",
"text": "Appointments",
"iconPath": "icons/AppointmentGrey.png",
"selectedIconPath": "icons/AppointmentBlue.png"
},
{
"pagePath": "pages/opportunity/opportunity",
"text": "Opportunity",
"iconPath": "icons/OpportunityGrey.png",
"selectedIconPath": "icons/OpportunityBlue.png"
}
],
"borderStyle": "black"
},
"networkTimeout": {
"request": 40000,
"connectSocket": 20000,
"uploadFile": 20000,
"downloadFile": 20000
}
}