-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathoptions.js
82 lines (70 loc) · 1.55 KB
/
options.js
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/**
* The questions to ask during the install process.
*/
const questions = [
{
name: 'login-screen',
message: 'Choose Login Screen ',
type: 'list',
choices: ['No Login Screen','Simple Login Screen', 'Sms Login Screen']
},
{
name: 'main-screen',
message: 'Choose Main Screen ',
type: 'list',
choices: [
'Simple Screen',
'Collapsible Toolbar Screen',
'Material Backdrop Screen',
'Bottom Tabbed Screen',
'Top Tabbed Screen',
'Navigation Drawer Screen',
'Collapsible Toolbar Screens With Drawer Navigation',
'Social Media Screen'
]
},
]
const nologin = {
'login-screen': 'No Login Screen'
}
const smslogin = {
'login-screen': 'Sms Login Screen'
}
const simplelogin = {
'login-screen': 'Simple Login Screen'
}
const simple = {
'main-screen': 'Simple Screen'
}
const collapsible = {
'main-screen': 'Collapsible Toolbar Screen'
}
const backdrop = {
'main-screen': 'Material Backdrop Screen'
}
const bottom = {
'main-screen': 'Bottom Tabbed Screen'
}
const top = {
'main-screen': 'Top Tabbed Screen'
}
const drawer = {
'main-screen': 'Navigation Drawer Screen'
}
const cdrawer = {
'main-screen': 'Collapsible Toolbar Screens With Drawer Navigation'
}
const smedia = {
'main-screen': 'Social Media Screen'
}
/**
* The min preset.
*/
const min = {
'login-screen': 'No Login Screen',
'main-screen': 'Simple Screen'
}
module.exports = {
questions,
answers: { min, nologin, simplelogin, smslogin, simple, collapsible,backdrop,bottom,top,drawer,cdrawer,smedia }
}