Last active
October 2, 2018 08:26
-
-
Save sagar-viradiya/c340da63d138e72c651f4066876190cc to your computer and use it in GitHub Desktop.
Creating SpringAnimation with SpringForce
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val springForce = SpringForce(0f) | |
.setStiffness(SpringForce.STIFFNESS_MEDIUM) | |
.setDampingRatio(SpringForce.DAMPING_RATIO_HIGH_BOUNCY) | |
val springAnimation = SpringAnimation(view, DynamicAnimation.TRANSLATION_X) | |
.setSpring(springForce) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment