-
-
Save KaustubhPatange/cb5cbc7562a581fef9b1e84045693b13 to your computer and use it in GitHub Desktop.
This file contains 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
@Composable | |
fun MainScreen() { | |
Navigator(FirstScreen()) { navigator -> | |
FadeTransition(navigator) | |
// ^ Fade transition will be applied to all destination change | |
// within this Navigator. | |
// For custom behavior use ScreenTransition() that'll give you | |
// initialState & targetState so you can chain multiple animations. | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment