Created
February 25, 2019 16:34
-
-
Save yfujiki/eb4bd19f1113b7777051912e7b17a206 to your computer and use it in GitHub Desktop.
Fade transition examples
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 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