catico
catico
@nandorojo I see. I have tried the sequence animation, but I also need to know when the animation has ended to trigger the change of `from` value and I haven't...
> one argument of onDidAnimate should also include attemptedSequenceValue I tried to check the `attemptedSequenceValue ` on the combined `onDidAnimate` like this: ``` { console.log({ prop, finished, value, events })...
Adding `key={val}` on `MotiView` doesn't seem to make a difference. The animation works correctly when written in reanimated directly.
There is a repro that works in reanimated and not in moti. This works as expected in reanimated: ``` const [val, setValue] = useState(100); const translateY = useSharedValue(0); const animatedStyle...
> I assume reanimated has the same issue if you add a callback on the last item? assuming you used a sequence for the repro and not a basic withRepeat...
> for a true repro you can drop the shared value and directly set the style in useAnimatedStyle. this is what moti does I'm assuming you mean like this: ```...
correct, the bug happens only on expo I updated the [repo](https://github.com/caticodev/moti-test) with the lastest repros in case you need it