Tooltip for React Native using React Native Reanimated and Modal
npm install react-native-reanimated-tooltipTooltip for React Native using React Native Reanimated and @gorhom/portal

``sh`
npm install react-native-reanimated @gorhom/portal react-native-reanimated-tooltip
`ts
import { PortalProvider } from '@gorhom/portal';
import React from 'react';
import { Text, Button } from 'react-native';
import { Tooltip } from 'react-native-reanimated-tooltip';
import { FadeOut, FadeIn } from 'react-native-reanimated';
const [visible, setVisible] = React.useState(false);
}
visible={visible}
onPress={() => {
setVisible(false);
}}
entering={FadeIn}
exiting={FadeOut}
>
title="Toggle tooltip"
onPress={() => {
setVisible(true);
}}
/>
``
Check TooltipProps
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
---
Made with create-react-native-library