Browse Source

rename types to navigation types

Ran Greenberg 7 years ago
parent
commit
0aae3fcc7c
2 changed files with 3 additions and 3 deletions
  1. 2
    2
      example/src/screens/NavigationTypes.js
  2. 1
    1
      example/src/screens/index.js

example/src/screens/Types.js → example/src/screens/NavigationTypes.js View File

2
 import {StyleSheet, ScrollView} from 'react-native';
2
 import {StyleSheet, ScrollView} from 'react-native';
3
 import Row from '../components/Row';
3
 import Row from '../components/Row';
4
 
4
 
5
-class Types extends Component {
5
+class NavigationTypes extends Component {
6
 
6
 
7
   constructor(props) {
7
   constructor(props) {
8
     super(props);
8
     super(props);
120
   },
120
   },
121
 });
121
 });
122
 
122
 
123
-export default Types;
123
+export default NavigationTypes;

+ 1
- 1
example/src/screens/index.js View File

1
 import {Navigation, ScreenVisibilityListener} from 'react-native-navigation';
1
 import {Navigation, ScreenVisibilityListener} from 'react-native-navigation';
2
 
2
 
3
-import Types from './Types';
3
+import Types from './NavigationTypes';
4
 import Actions from './Actions';
4
 import Actions from './Actions';
5
 import Transitions from './Transitions';
5
 import Transitions from './Transitions';
6
 
6