forked from ZeusLN/zeus
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Navigation.ts
274 lines (262 loc) · 6.63 KB
/
Navigation.ts
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
import { createAppContainer } from 'react-navigation';
import { createStackNavigator } from 'react-navigation-stack';
// Views
import Transaction from './views/Transaction';
import Wallet from './views/Wallet/Wallet';
import Send from './views/Send';
import LnurlPay from './views/LnurlPay/LnurlPay';
import LnurlChannel from './views/LnurlChannel';
import LnurlAuth from './views/LnurlAuth';
import Receive from './views/Receive';
import PaymentRequest from './views/PaymentRequest';
import HandleAnythingQRScanner from './views/handleAnythingQRScanner';
import NodeQRScanner from './views/NodeQRScanner';
import OpenChannel from './views/OpenChannel';
import SendingOnChain from './views/SendingOnChain';
import SendingLightning from './views/SendingLightning';
import Channel from './views/Channels/Channel';
import Payment from './views/Payment';
import PaymentPaths from './views/PaymentPaths';
import Invoice from './views/Invoice';
import SparkQRScanner from './views/SparkQRScanner';
import NodeInfo from './views/NodeInfo';
import Lockscreen from './views/Lockscreen';
// Settings views
import Settings from './views/Settings/Settings';
import NodeConfiguration from './views/Settings/NodeConfiguration';
import Nodes from './views/Settings/Nodes';
import Privacy from './views/Settings/Privacy';
import Security from './views/Settings/Security';
import SetPassword from './views/Settings/SetPassword';
import SetDuressPassword from './views/Settings/SetDuressPassword';
import SetPin from './views/Settings/SetPin';
import SetDuressPin from './views/Settings/SetDuressPin';
import Language from './views/Settings/Language';
import Currency from './views/Settings/Currency';
import Display from './views/Settings/Display';
import CertInstallInstructions from './views/Settings/CertInstallInstructions';
import SignVerifyMessage from './views/Settings/SignVerifyMessage';
import About from './views/Settings/About';
import Help from './views/Settings/Help';
import Sponsors from './views/Settings/Sponsors';
import Olympians from './views/Settings/Olympians';
import Gods from './views/Settings/Gods';
import Mortals from './views/Settings/Mortals';
import PointOfSale from './views/Settings/PointOfSale';
import PointOfSaleRecon from './views/Settings/PointOfSaleRecon';
import PointOfSaleReconExport from './views/Settings/PointOfSaleReconExport';
import PaymentsSettings from './views/Settings/PaymentsSettings';
import InvoicesSettings from './views/Settings/InvoicesSettings';
// Routing
import Routing from './views/Routing/Routing';
import RoutingEvent from './views/Routing/RoutingEvent';
import SetFees from './views/Routing/SetFees';
// new views
import Activity from './views/Activity/Activity';
import ActivityFilter from './views/Activity/ActivityFilter';
import CoinControl from './views/UTXOs/CoinControl';
import Utxo from './views/UTXOs/UTXO';
import Accounts from './views/Accounts/Accounts';
import ImportAccount from './views/Accounts/ImportAccount';
import ImportAccountQRScanner from './views/Accounts/ImportAccountQRScanner';
import BumpFee from './views/BumpFee';
import QR from './views/QR';
// POS
import Order from './views/Order';
import Intro from './views/Intro';
import IntroSplash from './views/IntroSplash';
import EditFee from './views/EditFee';
const AppScenes = {
Wallet: {
screen: Wallet
},
IntroSplash: {
screen: IntroSplash
},
Intro: {
screen: Intro
},
Lockscreen: {
screen: Lockscreen
},
Accounts: {
screen: Accounts
},
Send: {
screen: Send
},
EditFee: {
screen: EditFee
},
Settings: {
screen: Settings
},
NodeConfiguration: {
screen: NodeConfiguration
},
Nodes: {
screen: Nodes
},
Privacy: {
screen: Privacy
},
Security: {
screen: Security
},
SetPassword: {
screen: SetPassword
},
SetDuressPassword: {
screen: SetDuressPassword
},
SetPin: {
screen: SetPin
},
SetDuressPin: {
screen: SetDuressPin
},
Language: {
screen: Language
},
Currency: {
screen: Currency
},
Display: {
screen: Display
},
About: {
screen: About
},
Help: {
screen: Help
},
Sponsors: {
screen: Sponsors
},
Olympians: {
screen: Olympians
},
Gods: {
screen: Gods
},
Mortals: {
screen: Mortals
},
CertInstallInstructions: {
screen: CertInstallInstructions
},
SignVerifyMessage: {
screen: SignVerifyMessage
},
Transaction: {
screen: Transaction
},
Channel: {
screen: Channel
},
Payment: {
screen: Payment
},
PaymentPaths: {
screen: PaymentPaths
},
Invoice: {
screen: Invoice
},
LnurlPay: {
screen: LnurlPay
},
Receive: {
screen: Receive
},
LnurlChannel: {
screen: LnurlChannel
},
LnurlAuth: {
screen: LnurlAuth
},
PaymentRequest: {
screen: PaymentRequest
},
OpenChannel: {
screen: OpenChannel
},
SendingOnChain: {
screen: SendingOnChain
},
SendingLightning: {
screen: SendingLightning
},
NodeInfo: {
screen: NodeInfo
},
Routing: {
screen: Routing
},
RoutingEvent: {
screen: RoutingEvent
},
SetFees: {
screen: SetFees
},
Activity: {
screen: Activity
},
ActivityFilter: {
screen: ActivityFilter
},
CoinControl: {
screen: CoinControl
},
Utxo: {
screen: Utxo
},
ImportAccount: {
screen: ImportAccount
},
HandleAnythingQRScanner: {
screen: HandleAnythingQRScanner
},
NodeQRCodeScanner: {
screen: NodeQRScanner
},
ImportAccountQRScanner: {
screen: ImportAccountQRScanner
},
SparkQRScanner: {
screen: SparkQRScanner
},
Order: {
screen: Order
},
PointOfSaleSettings: {
screen: PointOfSale
},
PointOfSaleRecon: {
screen: PointOfSaleRecon
},
PointOfSaleReconExport: {
screen: PointOfSaleReconExport
},
PaymentsSettings: {
screen: PaymentsSettings
},
InvoicesSettings: {
screen: InvoicesSettings
},
BumpFee: {
screen: BumpFee
},
QR: {
screen: QR
}
};
const AppNavigator = createStackNavigator(AppScenes, {
headerMode: 'none',
mode: 'modal',
defaultNavigationOptions: {
gestureEnabled: false
}
});
const Navigation = createAppContainer(AppNavigator);
export default Navigation;