react-native-walkthrough-tooltip
react-native-walkthrough-tooltip copied to clipboard
Added animation type for RN Modal
trafficstars
for those of you looking for a way around this. I was able to get this to work:
class CustomModal extends Modal {
render(): React.ReactNode {
// eslint-disable-next-line react/jsx-props-no-spreading
return <Modal {...this.props} animationType="fade" />
}
}
<Tooltip
modalComponent={CustomModal}
>