Updated on 2026-08-14
This commit is contained in:
parent
3440e75d5d
commit
3a14b92fd8
18 changed files with 211 additions and 35 deletions
|
|
@ -6,7 +6,10 @@ import com.tangem.domain.wallets.models.UserWalletId
|
|||
|
||||
interface ManageTokensComponent : ComposableContentComponent {
|
||||
|
||||
data class Params(val userWalletId: UserWalletId?)
|
||||
data class Params(
|
||||
val userWalletId: UserWalletId?,
|
||||
val source: ManageTokensSource,
|
||||
)
|
||||
|
||||
interface Factory : ComponentFactory<Params, ManageTokensComponent>
|
||||
}
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
package com.tangem.features.managetokens.component
|
||||
|
||||
enum class ManageTokensSource {
|
||||
STORIES,
|
||||
ONBOARDING,
|
||||
SETTINGS,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue