forked from react-navigation/react-navigation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
68 lines (58 loc) · 1.65 KB
/
index.js
File metadata and controls
68 lines (58 loc) · 1.65 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
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
/* eslint-disable import/no-commonjs */
module.exports = {
get createAppContainer() {
return require('./createAppContainer').default;
},
get createKeyboardAwareNavigator() {
return require('./createKeyboardAwareNavigator').default;
},
get createNavigationAwareScrollable() {
return require('./createNavigationAwareScrollable').default;
},
get withOrientation() {
return require('./withOrientation').default;
},
get ResourceSavingSceneView() {
return require('./ResourceSavingSceneView').default;
},
get SafeAreaView() {
// react-native-safe-area-view is deprecated, use the new package
return require('react-native-safe-area-context/lib/commonjs').SafeAreaView;
},
get ScrollView() {
return require('./Scrollables').ScrollView;
},
get FlatList() {
return require('./Scrollables').FlatList;
},
get SectionList() {
return require('./Scrollables').SectionList;
},
get Themed() {
return require('./Themed').default;
},
get createNavigationFactory() {
return require('./throwIfWrongVersion').default;
},
get useNavigationBuilder() {
return require('./throwIfWrongVersion').default;
},
get useNavigation() {
return require('./throwIfWrongVersion').default;
},
get useRoute() {
return require('./throwIfWrongVersion').default;
},
get useFocusEffect() {
return require('./throwIfWrongVersion').default;
},
get useIsFocused() {
return require('./throwIfWrongVersion').default;
},
get useNavigationState() {
return require('./throwIfWrongVersion').default;
},
get NavigationContainer() {
return require('./throwIfWrongVersion').default;
},
};