Browse Source

Remove comments and logs

Guy Carmeli 8 years ago
parent
commit
8f268a7caf
2 changed files with 0 additions and 25 deletions
  1. 0
    1
      example/src/screens/Actions.js
  2. 0
    24
      example/src/screens/index.js

+ 0
- 1
example/src/screens/Actions.js View File

17
 
17
 
18
     onNavigatorEvent(event) {
18
     onNavigatorEvent(event) {
19
         if (event.id === 'contextualMenuDismissed') {
19
         if (event.id === 'contextualMenuDismissed') {
20
-            console.log('guyca', 'contextualMenuDismissed');
21
             this._contextualMenu = false;
20
             this._contextualMenu = false;
22
         }
21
         }
23
     }
22
     }

+ 0
- 24
example/src/screens/index.js View File

1
 import { Navigation } from 'react-native-navigation';
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
 import Types from './Types';
3
 import Types from './Types';
25
 import Actions from './Actions';
4
 import Actions from './Actions';
26
 import Transitions from './Transitions';
5
 import Transitions from './Transitions';
40
 import Cards from './transitions/sharedElementTransitions/Cards/Cards';
19
 import Cards from './transitions/sharedElementTransitions/Cards/Cards';
41
 import CardsInfo from './transitions/sharedElementTransitions/Cards/Info';
20
 import CardsInfo from './transitions/sharedElementTransitions/Cards/Info';
42
 
21
 
43
-// import Profiles from './transitions/sharedElementTransitions/Profiles/Profiles';
44
-
45
 import Masonry from './transitions/sharedElementTransitions/Masonry/Masonry';
22
 import Masonry from './transitions/sharedElementTransitions/Masonry/Masonry';
46
 import MasonryItem from './transitions/sharedElementTransitions/Masonry/Item';
23
 import MasonryItem from './transitions/sharedElementTransitions/Masonry/Item';
47
 
24
 
64
     Navigation.registerComponent('example.Transitions.SharedElementTransitions', () => SharedElementTransitions);
41
     Navigation.registerComponent('example.Transitions.SharedElementTransitions', () => SharedElementTransitions);
65
     Navigation.registerComponent('example.Transitions.SharedElementTransitions.Cards', () => Cards);
42
     Navigation.registerComponent('example.Transitions.SharedElementTransitions.Cards', () => Cards);
66
     Navigation.registerComponent('example.Transitions.SharedElementTransitions.Cards.Info', () => CardsInfo);
43
     Navigation.registerComponent('example.Transitions.SharedElementTransitions.Cards.Info', () => CardsInfo);
67
-    // Navigation.registerComponent('example.Transitions.SharedElementTransitions.Profiles', () => Profiles);
68
     Navigation.registerComponent('example.Transitions.SharedElementTransitions.Masonry', () => Masonry);
44
     Navigation.registerComponent('example.Transitions.SharedElementTransitions.Masonry', () => Masonry);
69
     Navigation.registerComponent('example.Transitions.SharedElementTransitions.Masonry.Item', () => MasonryItem);
45
     Navigation.registerComponent('example.Transitions.SharedElementTransitions.Masonry.Item', () => MasonryItem);
70
 }
46
 }