Skip to content

Instantly share code, notes, and snippets.

@tmaxxdd
Last active March 23, 2020 20:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tmaxxdd/c857d5e340d20f3d6f73b316cbca9171 to your computer and use it in GitHub Desktop.
Save tmaxxdd/c857d5e340d20f3d6f73b316cbca9171 to your computer and use it in GitHub Desktop.
val target = card,
val propertyName = "radius",
val startRadius = 4f
val endRadius = 500f
ObjectAnimator.ofFloat(target, propertyName, startRadius, endRadius).apply {
startDelay = 2000
duration = 5000
start()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment