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
#70 introduced a new animation case called .vector(CGVector) which replaced the old .from(Direction, CGFloat) case. This new type has a bug where the animations are performed in an incorrect direction.
@iTarek I added a comment on the PR a couple of days ago:
@iTarek after some review I believe the functionality is working as expected. I agree the API is a bit confusing but I'm testing >the example project and running this code:
let animation = AnimationType.vector(CGVector(dx: 0, dy: 30))
activityIndicator.animate(animations: [animation], reversed: true, initialAlpha: 1, finalAlpha: 0)
will effectively animate the view by moving it from its current position 30 points to the bottom. Can you maybe replicate the issue you're having on a PR or demo project?
Before the last update they both was working good with each other, but now they don't.
While the first animation still running the secound animation jump on the top of the screen
#70 introduced a new animation case called
.vector(CGVector)
which replaced the old.from(Direction, CGFloat)
case. This new type has a bug where the animations are performed in an incorrect direction.Should translate the view from top to bottom by 30 points but it's happening in a reversed order.
The text was updated successfully, but these errors were encountered: