Updated on 2026-08-14

This commit is contained in:
Tangem 2025-02-10 11:07:39 +05:00
parent 53e29be3c2
commit 380e5c19e0
16 changed files with 326 additions and 0 deletions

View file

@ -341,4 +341,12 @@ sealed class AppRoute(val path: String) : Route {
AddBackup, // continue backup process for existing wallet 1
}
}
@Serializable
data class Stories(
val storyId: String,
val nextScreen: AppRoute,
) : AppRoute(path = "/stories$storyId"), RouteBundleParams {
override fun getBundle(): Bundle = bundle(serializer())
}
}