Updated on 2026-08-14
This commit is contained in:
parent
d9d3ba2cda
commit
3a6668eee0
10 changed files with 97 additions and 28 deletions
|
|
@ -16,7 +16,4 @@ dependencies {
|
|||
/* Project - Core */
|
||||
implementation(projects.core.decompose)
|
||||
implementation(projects.core.ui)
|
||||
|
||||
/* AndroidX */
|
||||
implementation(deps.androidx.fragment.ktx)
|
||||
}
|
||||
|
|
@ -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,
|
||||
)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue