React native is drawer is giving me errors, I don't think my code is wrong here because I am following the guidelines from react native official website link here
Here is my package json
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/drawer": "^5.12.4",
"@react-navigation/native": "^5.9.3",
"@react-navigation/stack": "^5.14.3",
"react": "16.13.1",
"react-native": "0.63.4",
"react-native-gesture-handler": "^1.10.3",
"react-native-paper": "^4.7.2",
"react-native-reanimated": "^2.0.0",
"react-native-safe-area-context": "^3.2.0",
"react-native-screens": "^2.18.1"
As you can see I think react-native-reanimated is upgraded to 2.0 not too long ago.
Here is my code from official website.
import React from 'react';
import { Button, View } from 'react-native';
import { createDrawerNavigator } from '@react-navigation/drawer';
import { NavigationContainer } from '@react-navigation/native';
function HomeScreen({ navigation }) {
return (
<View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
<Button
onPress={() => navigation.navigate('Notifications')}
title="Go to notifications"
/>
</View>
);
}
function NotificationsScreen({ navigation }) {
return (
<View style={{ flex: 1, alignItems: 'center', justifyContent: 'center' }}>
<Button onPress={() => navigation.goBack()} title="Go back home" />
</View>
);
}
const Drawer = createDrawerNavigator();
const App = () => {
return (
<NavigationContainer>
<Drawer.Navigator initialRouteName="Home">
<Drawer.Screen name="Home" component={HomeScreen} />
<Drawer.Screen name="Notifications" component={NotificationsScreen} />
</Drawer.Navigator>
</NavigationContainer>
);
};
export default App;
Since I am starting a new project there is no other files.
Whenever the app is involve with react native/drawer & and react-native-reanimated
This error log is given
Invariant Violation: TurboModuleRegistry.getEnforcing(...): 'NativeReanimated' could not be found. Verify that a module by this name is registered in the native binary.
Is the package in the wrong here or am I in the wrong here. Can anyone help me verify this error?
React native is drawer is giving me errors, I don't think my code is wrong here because I am following the guidelines from react native official website link here
Here is my package json
As you can see I think react-native-reanimated is upgraded to 2.0 not too long ago.
Here is my code from official website.
Since I am starting a new project there is no other files.
Whenever the app is involve with react native/drawer & and react-native-reanimated
This error log is given
Invariant Violation: TurboModuleRegistry.getEnforcing(...): 'NativeReanimated' could not be found. Verify that a module by this name is registered in the native binary.Is the package in the wrong here or am I in the wrong here. Can anyone help me verify this error?