Updated on 2026-08-14

This commit is contained in:
Tangem 2026-07-06 15:36:54 +03:00
commit b603ef3a22
61 changed files with 2076 additions and 1452 deletions

View file

@ -1,7 +1,8 @@
package com.tangem.common.ui.navigationButtons
import com.tangem.core.decompose.navigation.Route
interface NavigationModelCallback {
fun onNavigationResult(navigationUM: NavigationUM)
fun onBackClick()
fun onNextClick()
fun onBackClick(currentRoute: Route)
fun onNextClick(currentRoute: Route)
}