I use the libary react-native-modal. Can anyone explain me why my swipe not working If I use "useNativeDriver" to true? It goes away if I swipe but I dont see any swipe animation.
<Modal
isVisible={modalDeleteMessage}
swipeDirection="down"
onSwipeComplete={() => setModalDeleteMessage(false)}
onBackButtonPress={() => setModalDeleteMessage(false)}
onBackdropPress={() => setModalDeleteMessage(false)}
animationOut="slideOutDown"
useNativeDriver={true}
backdropTransitionOutTiming={0}
style={{margin: 0, padding: 0}}
>
