Last active
June 9, 2025 22:30
-
-
Save igorescodro/a04335affe9e1de6d720c0fa9f0bac38 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
// Destination.kt | |
sealed interface Destination { | |
@Serializable | |
data object Back : Destination | |
} | |
// ShoppingDestination.kt | |
object ShoppingDestination { | |
@Serializable | |
data class Details(val itemId: String) : Destination | |
@Serializable | |
data object Cart : Destination | |
@Serializable | |
data object Payment : Destination | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment