Updated on 2026-08-14

This commit is contained in:
Tangem 2024-11-07 10:57:41 +02:00
parent ec40334d8a
commit cd9e96c526

View file

@ -44,6 +44,7 @@ internal sealed class WalletManageButton(val config: ActionButtonConfig) {
text = TextReference.Res(id = R.string.common_buy),
iconResId = R.drawable.ic_plus_24,
onClick = onClick,
enabled = enabled,
dimContent = dimContent,
),
)
@ -64,6 +65,7 @@ internal sealed class WalletManageButton(val config: ActionButtonConfig) {
text = TextReference.Res(id = R.string.common_send),
iconResId = R.drawable.ic_arrow_up_24,
onClick = onClick,
enabled = enabled,
dimContent = dimContent,
),
)
@ -83,9 +85,10 @@ internal sealed class WalletManageButton(val config: ActionButtonConfig) {
config = ActionButtonConfig(
text = TextReference.Res(id = R.string.common_receive),
iconResId = R.drawable.ic_arrow_down_24,
dimContent = dimContent,
onClick = onClick,
onLongClick = onLongClick,
enabled = enabled,
dimContent = dimContent,
),
)
@ -98,6 +101,7 @@ internal sealed class WalletManageButton(val config: ActionButtonConfig) {
text = TextReference.Res(id = R.string.common_stake),
iconResId = R.drawable.ic_staking_24,
onClick = onClick,
enabled = enabled,
dimContent = dimContent,
),
)
@ -118,6 +122,7 @@ internal sealed class WalletManageButton(val config: ActionButtonConfig) {
text = TextReference.Res(id = R.string.common_sell),
iconResId = R.drawable.ic_currency_24,
onClick = onClick,
enabled = enabled,
dimContent = dimContent,
),
)
@ -138,6 +143,7 @@ internal sealed class WalletManageButton(val config: ActionButtonConfig) {
text = TextReference.Res(id = R.string.swapping_swap_action),
iconResId = R.drawable.ic_exchange_vertical_24,
onClick = onClick,
enabled = enabled,
dimContent = dimContent,
),
)