wookoinc / react-native-popover-tooltip

ReactNative component - tooltip menu
MIT License
63 stars 63 forks source link

migrate to react-native-reanimated #36

Open vamshi9666 opened 4 years ago

vamshi9666 commented 4 years ago

Current tooltip works great on ios and higher performing devices but not on low end android devices. Its because animations used currently running on js thread and may slow down on any js process. like an api call or some async task. To overcome this use useNativeDriver or react-native-reanimated. As current animation is completely discrete and doesn't depend on gestures and stuff, best way is to use Transition api in reanimated.

vamshi9666 commented 4 years ago

solves #4 #15