Skip to content

Instantly share code, notes, and snippets.

@yfujiki
Created February 25, 2019 16:34
Show Gist options
  • Select an option

  • Save yfujiki/eb4bd19f1113b7777051912e7b17a206 to your computer and use it in GitHub Desktop.

Select an option

Save yfujiki/eb4bd19f1113b7777051912e7b17a206 to your computer and use it in GitHub Desktop.
Fade transition examples
val FADE_IN_TRANSITION = {
val fade = Fade()
fade.duration = 1000
fade
}()
val FADE_OUT_TRANSITION = {
val fade = Fade()
fade.duration = 200
fade
}()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment