Last active
December 21, 2019 22:22
-
-
Save zsoltk/2a37471d37e2f6c30e6cc14640c369fb to your computer and use it in GitHub Desktop.
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
- when (routing) { | |
+ when (currentRouting = backStack.last()) { | |
// all Content() on the right hand side are @Composable | |
is Routing.AlbumList -> AlbumList.Content() | |
is Routing.PhotosOfAlbum -> PhotosOfAlbum.Content(currentRouting.album) | |
is Routing.FullScreenPhoto -> FullScreenPhoto.Content(currentRouting..photo) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment