Browse Source

Remove comments and logs

Guy Carmeli 7 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,7 +17,6 @@ class Actions extends React.Component {
17 17
 
18 18
     onNavigatorEvent(event) {
19 19
         if (event.id === 'contextualMenuDismissed') {
20
-            console.log('guyca', 'contextualMenuDismissed');
21 20
             this._contextualMenu = false;
22 21
         }
23 22
     }

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

@@ -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
 }