Updated on 2026-08-14

This commit is contained in:
Tangem 2026-05-12 11:46:20 +03:00
parent a54c3ce6ea
commit b0e07c0258
23 changed files with 406 additions and 887 deletions

View file

@ -19,6 +19,11 @@ internal class EmptyExpressTransactionsComponent(
override val state: StateFlow<ExpressTransactionsBlockState> = MutableStateFlow(getInitialState())
override fun LazyListScope.expressTransactionsContentLegacy(
state: PersistentList<ExpressTransactionStateUM>,
modifier: Modifier,
) {}
override fun LazyListScope.expressTransactionsContent(
state: PersistentList<ExpressTransactionStateUM>,
modifier: Modifier,

View file

@ -17,6 +17,11 @@ internal class PreviewEmptyExpressTransactionsComponent : ExpressTransactionsCom
override val state: StateFlow<ExpressTransactionsBlockState> = MutableStateFlow(getInitialState())
override fun LazyListScope.expressTransactionsContentLegacy(
state: PersistentList<ExpressTransactionStateUM>,
modifier: Modifier,
) {}
override fun LazyListScope.expressTransactionsContent(
state: PersistentList<ExpressTransactionStateUM>,
modifier: Modifier,

View file

@ -140,7 +140,7 @@ internal fun TangemPayDetailsScreen(
}
if (state.accountDeactivatedNotificationConfig == null) {
with(expressTransactionsComponent) {
expressTransactionsContent(
expressTransactionsContentLegacy(
state = expressState.transactionsToDisplay,
modifier = modifier
.padding(horizontal = 16.dp)