Updated on 2026-08-14

This commit is contained in:
Tangem 2024-11-18 18:43:36 +05:00
parent da6ee825ab
commit 2f5d6525e2
11 changed files with 362 additions and 15 deletions

View file

@ -19,6 +19,7 @@ internal sealed interface ExchangeStatusNotifications {
sealed class CommonNotification(val config: NotificationConfig) : ExchangeStatusNotifications
@Deprecated("Use one in ExpressNotificationsUM")
data class NeedVerification(val onGoToProviderClick: () -> Unit) : CommonNotification(
config = NotificationConfig(
title = resourceReference(R.string.express_exchange_notification_verification_title),
@ -31,6 +32,7 @@ internal sealed interface ExchangeStatusNotifications {
),
)
@Deprecated("Use one in ExpressNotificationsUM")
data class Failed(val onGoToProviderClick: () -> Unit) : CommonNotification(
config = NotificationConfig(
title = resourceReference(R.string.express_exchange_notification_failed_title),

View file

@ -30,6 +30,7 @@ import com.tangem.features.tokendetails.impl.R
import kotlinx.collections.immutable.ImmutableList
import kotlinx.collections.immutable.toImmutableList
@Deprecated("Use ExpressStatusBlock from common")
@Composable
internal fun ExchangeStatusBlock(
statuses: ImmutableList<ExchangeStatusState>,