react-native-reanimated-carousel 和 react-native-modal一起使用導(dǎo)致彈框無法實(shí)現(xiàn)
使用 <GestureHandlerRootView > </GestureHandlerRootView>進(jìn)行包裹即可,
<GestureHandlerRootView
>
<Modal
isVisible={isModalNextVisible}
animationIn="slideInUp"
animationOut="slideOutDown"
style={styles.modalBottomContainer}
onBackdropPress={() => setModalNextVisible(false)}
>
</Modal>
</GestureHandlerRootView>