Updated on 2026-08-14

This commit is contained in:
Tangem 2026-07-06 16:39:33 +05:00
commit e638377a5e
55 changed files with 1841 additions and 1451 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)
}