Replies: 2 comments
-
Were you able to figure out |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hey! Do you guys still have problems on reanimated v3? There is withSequence documentation page, which seems to be what you are looking for. In terms of const a = useSharedValue(0)
const b = useSharedValue(1)
// These both animations will run in parallel
a.value = withTiming(...)
b.value = withTiming(...) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When running multiple different animations at once, I want to specify the order of execution between each animation.
For example, in React Native, a space like the one below.
Reanimated also has a withSequence, but it doesn't seem to be able to handle the order of execution of multiple animations.
So I'm wondering if there's a way to specify the order of execution of different animations, like sequence and parallel in React native.
Animated Example
Expected Example
Animated Example
Beta Was this translation helpful? Give feedback.
All reactions