Updated on 2026-08-14
This commit is contained in:
parent
ba6260e063
commit
948ed18ca6
14 changed files with 471 additions and 11 deletions
|
|
@ -9,6 +9,7 @@ import com.tangem.feature.stories.api.StoriesComponent
|
|||
import com.tangem.feature.usedesk.api.UsedeskComponent
|
||||
import com.tangem.feature.walletsettings.component.WalletSettingsComponent
|
||||
import com.tangem.features.account.AccountCreateEditComponent
|
||||
import com.tangem.features.account.AccountDetailsComponent
|
||||
import com.tangem.features.createwalletselection.CreateWalletSelectionComponent
|
||||
import com.tangem.features.details.component.DetailsComponent
|
||||
import com.tangem.features.disclaimer.api.components.DisclaimerComponent
|
||||
|
|
@ -88,6 +89,7 @@ internal class ChildFactory @Inject constructor(
|
|||
private val sendComponentFactoryV2: SendComponent.Factory,
|
||||
private val redesignedWalletConnectComponentFactory: WalletConnectEntryComponent.Factory,
|
||||
private val accountCreateEditComponentFactory: AccountCreateEditComponent.Factory,
|
||||
private val accountDetailsComponentFactory: AccountDetailsComponent.Factory,
|
||||
private val nftComponentFactory: NFTComponent.Factory,
|
||||
private val nftSendComponentFactory: NFTSendComponent.Factory,
|
||||
private val usedeskComponentFactory: UsedeskComponent.Factory,
|
||||
|
|
@ -528,6 +530,15 @@ internal class ChildFactory @Inject constructor(
|
|||
componentFactory = accountCreateEditComponentFactory,
|
||||
)
|
||||
}
|
||||
is AppRoute.AccountDetails -> {
|
||||
createComponentChild(
|
||||
context = context,
|
||||
params = AccountDetailsComponent.Params(
|
||||
account = route.account,
|
||||
),
|
||||
componentFactory = accountDetailsComponentFactory,
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue