Skip to content

Instantly share code, notes, and snippets.

@zsoltk
Last active December 21, 2019 22:22
Show Gist options
  • Save zsoltk/2a37471d37e2f6c30e6cc14640c369fb to your computer and use it in GitHub Desktop.
Save zsoltk/2a37471d37e2f6c30e6cc14640c369fb to your computer and use it in GitHub Desktop.
- 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