Updated on 2026-08-14

This commit is contained in:
Tangem 2025-08-18 19:52:11 +05:00
parent 94196d74c4
commit f7bd99f737
14 changed files with 527 additions and 77 deletions

View file

@ -2,8 +2,9 @@ package com.tangem.features.nft.component
import com.tangem.core.decompose.factory.ComponentFactory
import com.tangem.core.ui.decompose.ComposableContentComponent
import com.tangem.domain.nft.models.NFTAsset
import com.tangem.core.ui.extensions.TextReference
import com.tangem.domain.models.wallet.UserWalletId
import com.tangem.domain.nft.models.NFTAsset
interface NFTDetailsBlockComponent : ComposableContentComponent {
@ -11,6 +12,8 @@ interface NFTDetailsBlockComponent : ComposableContentComponent {
val userWalletId: UserWalletId,
val nftAsset: NFTAsset,
val nftCollectionName: String,
val title: TextReference,
val isSuccessScreen: Boolean,
)
interface Factory : ComponentFactory<Params, NFTDetailsBlockComponent>