Updated on 2026-08-14

This commit is contained in:
Tangem 2024-06-17 13:26:18 +04:00
parent d9d3ba2cda
commit 3a6668eee0
10 changed files with 97 additions and 28 deletions

View file

@ -16,7 +16,4 @@ dependencies {
/* Project - Core */
implementation(projects.core.decompose)
implementation(projects.core.ui)
/* AndroidX */
implementation(deps.androidx.fragment.ktx)
}

View file

@ -1,18 +1,14 @@
package com.tangem.features.details.component
import com.tangem.core.decompose.context.AppComponentContext
import com.tangem.core.decompose.factory.ComponentFactory
import com.tangem.core.ui.ComposableContentComponent
import com.tangem.domain.wallets.models.UserWalletId
interface DetailsComponent : ComposableContentComponent {
interface Factory : ComponentFactory<DetailsComponent, Params> {
override fun create(context: AppComponentContext, params: Params): DetailsComponent
}
interface Factory : ComponentFactory<Params, DetailsComponent>
data class Params(
val selectedUserWalletId: UserWalletId,
val userWalletId: UserWalletId,
)
}