-
Notifications
You must be signed in to change notification settings - Fork 6
/
app.json
59 lines (59 loc) · 1.43 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"pages": [
"pages/index/index",
"pages/input/input",
"pages/list/list",
"pages/flex/flex",
"pages/button/button",
"pages/textarea/textarea",
"pages/radio/radio",
"pages/checkbox/checkbox",
"pages/switch/switch",
"pages/loading/loading",
"pages/modal/modal",
"pages/drawer/drawer",
"pages/tab/tab",
"pages/line/line",
"pages/size/size",
"pages/gui/gui",
"pages/gesture/gesture",
"pages/region/region",
"pages/clip/clip",
"pages/grid/grid",
"pages/indexes/indexes",
"pages/drop/drop",
"pages/swiper/swiper",
"pages/fixed/fixed",
"pages/upload/upload",
"pages/top/top",
"pages/page/page",
"pages/search/search"
],
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#fff",
"navigationBarTitleText": "GUI",
"navigationBarTextStyle": "black"
},
"tabBar": {
"backgroundColor": "#fff",
"borderStyle": "black",
"color": "#999",
"selectedColor": "#2ca9e1",
"list": [
{
"pagePath": "pages/index/index",
"iconPath": "images/nav/index-default.png",
"selectedIconPath": "images/nav/index-active.png",
"text": "组件"
},
{
"pagePath": "pages/gui/gui",
"iconPath": "images/nav/gui-default.png",
"selectedIconPath": "images/nav/gui-active.png",
"text": "GUI"
}
]
},
"sitemapLocation": "sitemap.json"
}