Skip to content

Instantly share code, notes, and snippets.

@sagar-viradiya
Created October 1, 2018 17:59
Show Gist options
  • Save sagar-viradiya/fb6a925340cd650536bd7d182491f16a to your computer and use it in GitHub Desktop.
Save sagar-viradiya/fb6a925340cd650536bd7d182491f16a to your computer and use it in GitHub Desktop.
Extension for attaching SpringForce to SpringAnimation
inline fun SpringAnimation.withSpringForceProperties(func: SpringForce.() -> Unit): SpringAnimation {
if (spring == null) {
spring = SpringForce()
}
spring.func()
return this
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment