-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
60 lines (51 loc) · 1.5 KB
/
Copy pathindex.js
File metadata and controls
60 lines (51 loc) · 1.5 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
import {Navigation} from 'react-native-navigation';
/* COMPONENTS IMPORTS */
import Home from './screens/Home';
import ProgressBarView from './screens/ProgressBarView';
import ProgressBarSemiCircleView from './screens/ProgressBarSemiCircleView';
import CustomSwitchView from './screens/CustomSwitchView';
import ViewPager from './screens/ViewPager';
import HorizontalGalleryView from './screens/HorizontalGalleryView';
import IconView from './screens/IconView';
import ListWithItemMenuView from './screens/ListWithItemMenuView';
/* COMPONENTS REGISTRY */
Navigation.registerComponent('Home', () => Home);
Navigation.registerComponent('ProgressBarView', () => ProgressBarView);
Navigation.registerComponent(
'ProgressBarSemiCircleView',
() => ProgressBarSemiCircleView,
);
Navigation.registerComponent('CustomSwitchView', () => CustomSwitchView);
Navigation.registerComponent('ViewPagerView', () => ViewPager);
Navigation.registerComponent(
'HorizontalGalleryView',
() => HorizontalGalleryView,
);
Navigation.registerComponent('IconView', () => IconView);
Navigation.registerComponent(
'ListWithItemMenuView',
() => ListWithItemMenuView,
);
Navigation.setDefaultOptions({
statusBar: {
backgroundColor: 'dark',
},
topBar: {
visible: false,
},
});
Navigation.events().registerAppLaunchedListener(() => {
Navigation.setRoot({
root: {
stack: {
children: [
{
component: {
name: 'Home',
},
},
],
},
},
});
});