I am getting an error message on Expo which says ''createBottomTabNavigator()' has been moved to 'react-navigation-tabs'. See http........ for more details
I have done npm install react-navigation-tabs and changed my imports but those changes did not get rid of the error
import { createBottomTabNavigator } from 'react-navigation-tabs';
import { createAppContainer } from 'react-navigation'
import HomeScreen from './Home';
const TabNavigator = createBottomTabNavigator({
Home: HomeScreen,
SignUp: SignUpScreen
},
);
export default createAppContainer(TabNavigator);
I expected that after installing react-navigation-tabs and changing my imports, the problem would be fixed.