react-native-walkthrough-tooltip icon indicating copy to clipboard operation
react-native-walkthrough-tooltip copied to clipboard

Added animation type for RN Modal

Open JNelder opened this issue 3 years ago • 1 comments
trafficstars

JNelder avatar Mar 31 '22 10:03 JNelder

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}
>

RyanPliske avatar Sep 12 '23 18:09 RyanPliske