Skip to content

Instantly share code, notes, and snippets.

@AndroidPoet
Created April 17, 2026 17:28
Show Gist options
  • Select an option

  • Save AndroidPoet/94731ceefcb3e155068e2b9e8e199e4d to your computer and use it in GitHub Desktop.

Select an option

Save AndroidPoet/94731ceefcb3e155068e2b9e8e199e4d to your computer and use it in GitHub Desktop.
sealed class Route {
data object Home : Route()
data class Profile(val userId: String, val postsCount: Int) : Route()
}
navController.navigate(Route.Profile(userId = "123", postsCount = 42))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment