Navigation Key
@Parcelize
class ProfileKey(val profileId: String): NavigationKeySelf hosted NavigationKey
@Parcelize
class ProfileKey(val profileId: String): NavigationKey.WithNode<Screen> {
override fun navigationNode() = Screen {
Text("Profile: $profileId")
}
}Last updated