You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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
orreact-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.The text was updated successfully, but these errors were encountered: