|
@@ -1,26 +1,5 @@
|
1
|
1
|
import { Navigation } from 'react-native-navigation';
|
2
|
2
|
|
3
|
|
-// import FirstTabScreen from './FirstTabScreen';
|
4
|
|
-// import SecondTabScreen from './SecondTabScreen';
|
5
|
|
-// import PushedScreen from './PushedScreen';
|
6
|
|
-// import StyledScreen from './StyledScreen';
|
7
|
|
-// import SideMenu from './SideMenu';
|
8
|
|
-// import ModalScreen from './ModalScreen';
|
9
|
|
-// import NotificationScreen from './NotificationScreen';
|
10
|
|
-// import LightBoxScreen from './LightBoxScreen';
|
11
|
|
-
|
12
|
|
-// register all screens of the app (including internal ones)
|
13
|
|
-// export function registerScreens() {
|
14
|
|
-// Navigation.registerComponent('example.FirstTabScreen', () => FirstTabScreen);
|
15
|
|
-// Navigation.registerComponent('example.SecondTabScreen', () => SecondTabScreen);
|
16
|
|
-// Navigation.registerComponent('example.PushedScreen', () => PushedScreen);
|
17
|
|
-// Navigation.registerComponent('example.StyledScreen', () => StyledScreen);
|
18
|
|
-// Navigation.registerComponent('example.ModalScreen', () => ModalScreen);
|
19
|
|
-// Navigation.registerComponent('example.NotificationScreen', () => NotificationScreen);
|
20
|
|
-// Navigation.registerComponent('example.SideMenu', () => SideMenu);
|
21
|
|
-// Navigation.registerComponent('example.LightBoxScreen', () => LightBoxScreen);
|
22
|
|
-// }
|
23
|
|
-
|
24
|
3
|
import Types from './Types';
|
25
|
4
|
import Actions from './Actions';
|
26
|
5
|
import Transitions from './Transitions';
|
|
@@ -40,8 +19,6 @@ import SharedElementTransitions from './transitions/SharedElementTransitions';
|
40
|
19
|
import Cards from './transitions/sharedElementTransitions/Cards/Cards';
|
41
|
20
|
import CardsInfo from './transitions/sharedElementTransitions/Cards/Info';
|
42
|
21
|
|
43
|
|
-// import Profiles from './transitions/sharedElementTransitions/Profiles/Profiles';
|
44
|
|
-
|
45
|
22
|
import Masonry from './transitions/sharedElementTransitions/Masonry/Masonry';
|
46
|
23
|
import MasonryItem from './transitions/sharedElementTransitions/Masonry/Item';
|
47
|
24
|
|
|
@@ -64,7 +41,6 @@ export default function () {
|
64
|
41
|
Navigation.registerComponent('example.Transitions.SharedElementTransitions', () => SharedElementTransitions);
|
65
|
42
|
Navigation.registerComponent('example.Transitions.SharedElementTransitions.Cards', () => Cards);
|
66
|
43
|
Navigation.registerComponent('example.Transitions.SharedElementTransitions.Cards.Info', () => CardsInfo);
|
67
|
|
- // Navigation.registerComponent('example.Transitions.SharedElementTransitions.Profiles', () => Profiles);
|
68
|
44
|
Navigation.registerComponent('example.Transitions.SharedElementTransitions.Masonry', () => Masonry);
|
69
|
45
|
Navigation.registerComponent('example.Transitions.SharedElementTransitions.Masonry.Item', () => MasonryItem);
|
70
|
46
|
}
|