Created
August 18, 2023 05:44
-
-
Save chiragthummar/46f6abeec1c01ac6d93126adcc69af46 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
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