This repository was archived by the owner on Aug 9, 2023. It is now read-only.
forked from react-navigation/react-navigation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
510 lines (490 loc) · 13.8 KB
/
App.tsx
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
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
import * as React from 'react';
import { registerRootComponent } from 'expo';
import {
Animated,
Image,
Platform,
StatusBar,
StyleSheet,
TouchableOpacity,
Text,
View,
} from 'react-native';
import {
NativeViewGestureHandler,
RectButton,
} from 'react-native-gesture-handler';
import {
SupportedThemes,
ThemeColors,
ThemeContext,
Themed,
createAppContainer,
SafeAreaView,
} from 'react-navigation';
import { createStackNavigator } from 'react-navigation-stack';
import { MaterialCommunityIcons } from '@expo/vector-icons';
import AnimatedSwitch from './src/AnimatedSwitch';
import BottomTabs from './src/BottomTabs';
import CustomTabs from './src/CustomTabs';
import CustomTabUI from './src/CustomTabUI';
import Drawer from './src/Drawer';
import ModalStack from './src/ModalStack';
import SimpleStack from './src/SimpleStack';
import StacksAndKeys from './src/StacksAndKeys';
import StacksInTabs from './src/StacksInTabs';
import StacksOverTabs from './src/StacksOverTabs';
import StacksOverTopTabs from './src/StacksOverTopTabs';
import StackWithCustomHeaderBackImage from './src/StackWithCustomHeaderBackImage';
import StackWithHeaderPreset from './src/StackWithHeaderPreset';
import StackWithTranslucentHeader from './src/StackWithTranslucentHeader';
import SwitchWithStacks from './src/SwitchWithStacks';
import TabsInDrawer from './src/TabsInDrawer';
import DragLimitedToModal from './src/DragLimitedToModal';
import FocusEvents from './src/FocusEvents';
import FullScreen from './src/FullScreen';
import GestureInteraction from './src/GestureInteraction';
import {
HeaderBackgroundDefault,
HeaderBackgroundFade,
} from './src/HeaderBackgrounds';
import HeaderPreset from './src/HeaderPreset';
import IconTabs from './src/IconTabs';
import ImageStack from './src/ImageStack';
import ImmediateTransition from './src/ImmediateTransition';
import LifecycleInteraction from './src/LifecycleInteraction';
import MaterialTopTabs from './src/MaterialTopTabs';
import ModalPresentation from './src/ModalPresentation';
import ParallaxDrawer from './src/ParallaxDrawer';
import PerScreenTransitions from './src/PerScreenTransitions';
import RevealStack from './src/RevealStack';
import RTLDrawer from './src/RTLDrawer';
import ShiftingTabs from './src/ShiftingTabs';
import { SimpleDrawer, SimpleDrawerUnmountInactive } from './src/SimpleDrawer';
import StackAnimationConsumerStack from './src/StackAnimationConsumerStack';
import StackWithDrawer from './src/StackWithDrawer';
import StyledDrawer from './src/StyledDrawer';
import StackWithInput from './src/StackWithInput';
import TransparentStack from './src/TransparentStack';
const ExampleInfo = {
SimpleStack: {
name: 'Simple Stack',
screen: SimpleStack,
},
BottomTabs: {
name: 'Bottom Tabs Example',
screen: BottomTabs,
},
ModalStack: {
name:
Platform.OS === 'ios'
? 'Modal Stack Example'
: 'Stack with showing/hiding Header',
screen: ModalStack,
},
StackWithCustomHeaderBackImage: {
name: 'Stack with custom header back image',
screen: StackWithCustomHeaderBackImage,
},
StackWithHeaderPreset: {
name: 'UIKit-style Header Transitions',
screen: StackWithHeaderPreset,
},
StackWithTranslucentHeader: {
name: 'Translucent Header',
screen: StackWithTranslucentHeader,
},
StacksInTabs: {
name: 'Stacks in Tabs',
screen: StacksInTabs,
},
StacksOverTabs: {
name: 'Stacks over Tabs',
screen: StacksOverTabs,
},
StacksOverTopTabs: {
name: 'Stacks with non-standard header height',
screen: StacksOverTopTabs,
},
StacksAndKeys: {
name: 'Link in Stack with keys',
screen: StacksAndKeys,
},
SwitchWithStacks: {
name: 'Switch between routes',
screen: SwitchWithStacks,
},
TabsInDrawer: {
name: 'Drawer + Tabs Example',
screen: TabsInDrawer,
},
Drawer: {
name: 'Drawer Example',
screen: Drawer,
},
AnimatedSwitch: {
name: 'AnimatedSwitch Example',
screen: AnimatedSwitch,
},
CustomTabUI: {
name: 'Additional views around Tab navigator',
screen: CustomTabUI,
},
CustomTabs: {
name: 'Custom Tabs with router',
screen: CustomTabs,
},
LinkStack: {
name: 'Deep link in Stack',
screen: SimpleStack,
path: 'people/Jordan',
},
DragLimitedToModal: {
name: 'Drag limited to modal',
screen: DragLimitedToModal,
},
EventsStack: { name: 'Focus Events', screen: FocusEvents },
FullScreen: { name: 'Fullscreen Stack', screen: FullScreen },
GestureInteraction: {
name: 'Gesture interaction',
screen: GestureInteraction,
},
HeaderBackgroundDefault: {
name: 'Default preset for header background',
screen: HeaderBackgroundDefault,
},
HeaderBackgroundFade: {
name: 'Fade preset for header background',
screen: HeaderBackgroundFade,
},
HeaderPreset: {
name: 'Header presets',
screen: HeaderPreset,
},
IconTabs: { name: 'Tabs with icons', screen: IconTabs },
ImageStack: {
name: 'Stack with images',
screen: ImageStack,
},
ImmediateTransition: {
name: 'Immediate transition',
screen: ImmediateTransition,
},
LifecycleInteraction: {
name: 'Lifecycle interaction',
screen: LifecycleInteraction,
},
MaterialTopTabs: {
name: 'Material top tabs',
screen: MaterialTopTabs,
},
ModalPresentation: {
name: 'Modal presentation Stack',
screen: ModalPresentation,
},
ParallaxDrawer: {
name: 'Parallax Drawer',
screen: ParallaxDrawer,
},
PerScreenTransitions: {
name: 'Per screen transitions',
screen: PerScreenTransitions,
},
RevealStack: {
name: 'Reveal animation Stack',
screen: RevealStack,
},
RTLDrawer: { name: 'RTL Srawer', screen: RTLDrawer },
ShiftingTabs: {
name: 'Shifting tabs',
screen: ShiftingTabs,
},
SimpleDrawer: {
name: 'Simple drawer',
screen: SimpleDrawer,
},
SimpleDrawerUnmountInactive: {
name: 'Simple drawer (unmountInactive)',
screen: SimpleDrawerUnmountInactive,
},
StackAnimationConsumerStack: {
name: 'Stack animation consumer',
screen: StackAnimationConsumerStack,
},
StackWithDrawer: {
name: 'Stack with drawer',
screen: StackWithDrawer,
},
StyledDrawer: {
name: 'Styled drawer',
screen: StyledDrawer,
},
StackWithInput: {
name: 'Stack with input',
screen: StackWithInput,
},
TransparentStack: {
name: 'Transparent stack',
screen: TransparentStack,
},
};
interface State {
scrollY: Animated.Value;
}
class MainScreen extends React.Component<any, State> {
// eslint-disable-next-line react/sort-comp
static contextType = ThemeContext;
context!: React.ContextType<typeof ThemeContext>;
state = {
scrollY: new Animated.Value(0),
};
render() {
const { navigation } = this.props;
const scale = this.state.scrollY.interpolate({
extrapolate: 'clamp',
inputRange: [-450, 0, 100],
outputRange: [2, 1, 0.8],
});
const translateY = this.state.scrollY.interpolate({
inputRange: [-450, 0, 100],
outputRange: [-150, 0, 40],
});
const opacity = this.state.scrollY.interpolate({
extrapolate: 'clamp',
inputRange: [0, 50],
outputRange: [1, 0],
});
const underlayOpacity = this.state.scrollY.interpolate({
extrapolate: 'clamp',
inputRange: [0, 50],
outputRange: [0, 1],
});
const backgroundScale = this.state.scrollY.interpolate({
extrapolate: 'clamp',
inputRange: [-450, 0],
outputRange: [3, 1],
});
const backgroundTranslateY = this.state.scrollY.interpolate({
inputRange: [-450, 0],
outputRange: [0, 0],
});
return (
<View style={{ flex: 1 }}>
<NativeViewGestureHandler>
<Animated.ScrollView
style={{ flex: 1, backgroundColor: ThemeColors[this.context].body }}
scrollEventThrottle={1}
onScroll={Animated.event(
[
{
nativeEvent: { contentOffset: { y: this.state.scrollY } },
},
],
{ useNativeDriver: true }
)}
>
<Animated.View
style={[
styles.backgroundUnderlay,
{
transform: [
{ scale: backgroundScale },
{ translateY: backgroundTranslateY },
],
},
]}
/>
<Animated.View
style={{ opacity, transform: [{ scale }, { translateY }] }}
>
<SafeAreaView
style={styles.bannerContainer}
forceInset={{ top: 'always', bottom: 'never' }}
>
<View style={styles.banner}>
<Image
source={require('./src/assets/NavLogo.png')}
style={styles.bannerImage}
/>
<Text style={styles.bannerTitle}>
React Navigation Examples
</Text>
</View>
</SafeAreaView>
</Animated.View>
<SafeAreaView
forceInset={{ top: 'never', bottom: 'always' }}
style={{ backgroundColor: '#eee' }}
>
<View
style={{
backgroundColor: ThemeColors[this.context].bodyContent,
}}
>
{(Object.keys(ExampleInfo) as (keyof typeof ExampleInfo)[]).map(
(routeName) => (
<RectButton
key={routeName}
underlayColor="#ccc"
activeOpacity={0.3}
onPress={() => {
const route = ExampleInfo[routeName];
// @ts-ignore
if (route.screen || route.path || route.params) {
// @ts-ignore
const { path, params, screen } = route;
// @ts-ignore
const { router } = screen;
const action =
path &&
router.getActionForPathAndParams(path, params);
navigation.navigate(routeName, {}, action);
} else {
navigation.navigate(routeName);
}
}}
>
<View
style={[
styles.item,
this.context === 'dark'
? styles.itemDark
: styles.itemLight,
]}
>
<Themed.Text style={styles.title}>
{ExampleInfo[routeName].name}
</Themed.Text>
</View>
</RectButton>
)
)}
</View>
</SafeAreaView>
</Animated.ScrollView>
</NativeViewGestureHandler>
<StatusBar barStyle="light-content" />
<Animated.View
style={[styles.statusBarUnderlay, { opacity: underlayOpacity }]}
/>
</View>
);
}
}
const Navigation = createAppContainer(
createStackNavigator(
// @ts-ignore
{
...ExampleInfo,
Index: {
screen: MainScreen,
},
},
{
headerMode: 'none',
initialRouteName: 'Index',
/*
* Use modal on iOS because the card mode comes from the right,
* which conflicts with the drawer example gesture
*/
mode: Platform.OS === 'ios' ? 'modal' : 'card',
}
)
);
export default function App() {
let [theme, setTheme] = React.useState<SupportedThemes>('light');
return (
<View style={{ flex: 1 }}>
<Navigation theme={theme} />
<View style={{ position: 'absolute', bottom: 60, right: 20 }}>
<TouchableOpacity
onPress={() => {
setTheme(theme === 'light' ? 'dark' : 'light');
}}
>
<View
style={{
backgroundColor: ThemeColors[theme].bodyContent,
borderRadius: 25,
width: 50,
height: 50,
alignItems: 'center',
justifyContent: 'center',
borderColor: ThemeColors[theme].bodyBorder,
borderWidth: 1,
shadowColor: ThemeColors[theme].label,
shadowOffset: {
width: 0,
height: 2,
},
shadowOpacity: 0.4,
shadowRadius: 2,
elevation: 5,
}}
>
<MaterialCommunityIcons
name="theme-light-dark"
size={30}
color={ThemeColors[theme].label}
/>
</View>
</TouchableOpacity>
</View>
</View>
);
}
registerRootComponent(App);
const styles = StyleSheet.create({
backgroundUnderlay: {
backgroundColor: '#673ab7',
height: 300,
left: 0,
position: 'absolute',
right: 0,
top: -100,
},
banner: {
alignItems: 'center',
flexDirection: 'row',
padding: 16,
},
bannerContainer: {
// backgroundColor: '#673ab7',
alignItems: 'center',
},
bannerImage: {
height: 36,
margin: 8,
resizeMode: 'contain',
tintColor: '#fff',
width: 36,
},
bannerTitle: {
color: '#fff',
fontSize: 18,
fontWeight: '200',
marginRight: 5,
marginVertical: 8,
},
item: {
borderBottomWidth: StyleSheet.hairlineWidth,
padding: 16,
},
itemLight: {
borderBottomColor: ThemeColors.light.bodyBorder,
},
itemDark: {
borderBottomColor: ThemeColors.dark.bodyBorder,
},
statusBarUnderlay: {
backgroundColor: '#673ab7',
height: 20,
left: 0,
position: 'absolute',
right: 0,
top: 0,
},
title: {
fontSize: 16,
},
});