Updated on 2026-08-14

This commit is contained in:
Tangem 2024-08-01 15:19:13 +04:00
parent 6227d835b0
commit 836fa6f4ab
5 changed files with 28 additions and 0 deletions

View file

@ -15,4 +15,7 @@ dependencies {
/* Project - Core */
implementation(projects.core.ui)
implementation(projects.core.decompose)
/* Compose */
implementation(deps.compose.runtime)
}

View file

@ -0,0 +1,18 @@
package com.tangem.features.managetokens.component
import androidx.compose.runtime.Composable
import com.tangem.domain.wallets.models.UserWalletId
interface AddCustomTokenComponent {
@Composable
fun BottomSheet(isVisible: Boolean, onDismiss: () -> Unit)
data class Params(
val userWalletId: UserWalletId,
)
interface Factory {
fun create(params: Params): AddCustomTokenComponent
}
}