Updated on 2026-08-14

This commit is contained in:
Tangem 2025-07-31 14:54:44 +05:00
parent 4c51193221
commit 50c1623bfa
3 changed files with 6 additions and 6 deletions

View file

@ -129,7 +129,7 @@ fun TangemTopAppBar(
TopAppBarButton( TopAppBarButton(
button = endButton, button = endButton,
tint = iconTint, tint = iconTint,
modifier = modifier.testTag(TopAppBarTestTags.MORE_BUTTON), modifier = Modifier.testTag(TopAppBarTestTags.MORE_BUTTON),
) )
} }
}, },
@ -175,7 +175,7 @@ fun TangemTopAppBar(
TopAppBarButton( TopAppBarButton(
button = startButton, button = startButton,
tint = iconTint, tint = iconTint,
modifier = modifier.testTag(TopAppBarTestTags.CLOSE_BUTTON), modifier = Modifier.testTag(TopAppBarTestTags.CLOSE_BUTTON),
) )
} }
} }

View file

@ -208,7 +208,7 @@ internal fun TextsBlock(
text = titleText, text = titleText,
color = titleColor, color = titleColor,
style = TangemTheme.typography.button, style = TangemTheme.typography.button,
modifier = modifier.testTag(NotificationTestTags.TITLE), modifier = Modifier.testTag(NotificationTestTags.TITLE),
) )
SpacerH(height = TangemTheme.dimens.spacing2) SpacerH(height = TangemTheme.dimens.spacing2)
@ -218,7 +218,7 @@ internal fun TextsBlock(
text = subtitle.resolveReference(), text = subtitle.resolveReference(),
color = subtitleColor, color = subtitleColor,
style = TangemTheme.typography.caption2, style = TangemTheme.typography.caption2,
modifier = modifier.testTag(NotificationTestTags.TEXT), modifier = Modifier.testTag(NotificationTestTags.TEXT),
) )
} }
} }

View file

@ -62,7 +62,7 @@ private fun OnrampProviderBlock(state: OnrampProviderBlockUM.Content, modifier:
}, },
color = TangemTheme.colors.text.tertiary, color = TangemTheme.colors.text.tertiary,
style = TangemTheme.typography.body2, style = TangemTheme.typography.body2,
modifier = modifier.testTag(BuyTokenDetailsScreenTestTags.PROVIDER_TITLE), modifier = Modifier.testTag(BuyTokenDetailsScreenTestTags.PROVIDER_TITLE),
) )
Text( Text(
text = buildAnnotatedString { text = buildAnnotatedString {
@ -72,7 +72,7 @@ private fun OnrampProviderBlock(state: OnrampProviderBlockUM.Content, modifier:
}, },
style = TangemTheme.typography.caption2, style = TangemTheme.typography.caption2,
color = TangemTheme.colors.text.tertiary, color = TangemTheme.colors.text.tertiary,
modifier = modifier.testTag(BuyTokenDetailsScreenTestTags.PROVIDER_TEXT), modifier = Modifier.testTag(BuyTokenDetailsScreenTestTags.PROVIDER_TEXT),
) )
} }
AnimatedVisibility( AnimatedVisibility(