Skip to content

Instantly share code, notes, and snippets.

@chiragthummar
Created August 18, 2023 05:44
Show Gist options
  • Save chiragthummar/46f6abeec1c01ac6d93126adcc69af46 to your computer and use it in GitHub Desktop.
Save chiragthummar/46f6abeec1c01ac6d93126adcc69af46 to your computer and use it in GitHub Desktop.
sealed class Screens(val route : String) {
object Dashboard : Screens("dashboard")
object Home : Screens("home"){
object Login : Screens("login")
object Register : Screens("register")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment