We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi ! I'm trying to increase the duration of my animation on swipe left or right and I saw the below code in SwipeListener:
SwipeListener:
private ViewPropertyAnimator animateOffScreenLeft(int duration) { return card.animate() .setDuration(SwipeDeck.ANIMATION_DURATION) .x(-(parentWidth)) .y(0) .rotation(-30); } private ViewPropertyAnimator animateOffScreenRight(int duration) { return card.animate() .setDuration(SwipeDeck.ANIMATION_DURATION) .x(parentWidth * 2) .y(0) .rotation(30); }
The parameter duration is never used. Can you change this ?
duration
The text was updated successfully, but these errors were encountered:
its fixed already. Can be closed now.
Sorry, something went wrong.
I wonder you will fix this issue thanks
No branches or pull requests
Hi !
I'm trying to increase the duration of my animation on swipe left or right and I saw the below code in
SwipeListener:
The parameter
duration
is never used. Can you change this ?The text was updated successfully, but these errors were encountered: