Open
Description
I am using react-native-reanimated-carousel ^3.5.1. Currently I can't swipe left or right and no errors occur. I tried wrapping the but still errors
My code:
<GestureHandlerRootView style={{ flex: 1 }}> <Carousel loop={true} width={width * 1} height={height / 4.3} autoPlay={false} data={images} renderItem={({ item }) => ( <Pressable style={{ flex: 1, paddingHorizontal: 15, zIndex: 999, backgroundColor: 'transparent' }} onPress={() => navigation.navigate('Banner')} > <View style={{ flex: 1, justifyContent: 'center', alignItems: 'center', position: 'relative', }} > <Image source={item} style={{ width: '100%', flex: 1, resizeMode: 'cover', borderRadius: 8, }} /> </View> </Pressable> )} /> </GestureHandlerRootView>