Updated on 2026-08-14

This commit is contained in:
Tangem 2023-08-29 15:36:58 +08:00
parent 5d13d36cb3
commit 29fb436bc2
10 changed files with 84 additions and 31 deletions

View file

@ -1,12 +1,14 @@
package com.tangem.core.navigation
/**
* Navigation state holder
* Navigation controller that based on redux actions
*
[REDACTED_AUTHOR]
*/
interface NavigationStateHolder {
interface ReduxNavController {
/** Navigate by [action] */
fun navigate(action: NavigationAction)
fun getBackStack(): List<AppScreen>
}