Skip to content

Instantly share code, notes, and snippets.

@vodamiro
Created April 11, 2019 14:01
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 vodamiro/169c3e6915da0ed752374be5a82e4abb to your computer and use it in GitHub Desktop.
Save vodamiro/169c3e6915da0ed752374be5a82e4abb to your computer and use it in GitHub Desktop.
S_A_ScopeFunctions.kt
private const val DURATION_IN_MS = 3000L
val fadeInAnimation = AlphaAnimation(0f, 1f).apply {
duration = DURATION_IN_MS
interpolator = AccelerateDecelerateInterpolator()
fillAfter = true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment