Updated on 2026-08-14
This commit is contained in:
parent
ab27ff4bea
commit
2f7c994a61
15 changed files with 256 additions and 137 deletions
|
|
@ -1,10 +1,18 @@
|
|||
package com.tangem.feature.wallet.deeplink
|
||||
|
||||
import com.tangem.common.routing.AppRoute
|
||||
import com.tangem.common.routing.AppRouter
|
||||
import com.tangem.features.wallet.deeplink.WalletDeepLinkHandler
|
||||
import dagger.assisted.AssistedFactory
|
||||
import dagger.assisted.AssistedInject
|
||||
|
||||
internal class DefaultWalletDeepLinkHandler @AssistedInject constructor() : WalletDeepLinkHandler {
|
||||
internal class DefaultWalletDeepLinkHandler @AssistedInject constructor(
|
||||
router: AppRouter,
|
||||
) : WalletDeepLinkHandler {
|
||||
|
||||
init {
|
||||
router.popTo(AppRoute.Wallet)
|
||||
}
|
||||
|
||||
@AssistedFactory
|
||||
interface Factory : WalletDeepLinkHandler.Factory {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue