The error --> Error: Exception in HostFunction: java.lang.IllegalArgumentException: Could not find @ReactModule annotation in com.swmansion.gesturehandler.react.RNGestureHandlerModule
Here is where i try to import it:
import Animated, { SlideInUp, SlideInDown } from "react-native-reanimated";
const HomeScreen = ({ navigation }: any) => {
return (
<View style={styles.container}>
<Text>Home</Text>
<Navigation navigation={navigation} />
<StatusBar style="auto" />
</View>
);
};