move to react-navigation core and native

This commit is contained in:
Eric Vicenti
2018-10-15 11:21:04 -07:00
committed by satyajit.happy
parent 242cd9901e
commit fb09ca5ad3
2 changed files with 4 additions and 3 deletions

View File

@@ -6,9 +6,10 @@ import {
StackActions,
SceneView,
createNavigator,
createNavigationContainer,
NavigationActions,
} from 'react-navigation';
} from '@react-navigation/core';
import { createNavigationContainer } from '@react-navigation/native';
export type InjectedProps = {
getLabelText: (props: { route: any }) => any,

View File

@@ -8,7 +8,7 @@ import {
View,
Platform,
} from 'react-native';
import { SafeAreaView } from 'react-navigation';
import { SafeAreaView } from '@react-navigation/native';
import CrossFadeIcon from './CrossFadeIcon';
import withDimensions from '../utils/withDimensions';