Updated on 2026-08-14

This commit is contained in:
Tangem 2025-07-29 20:53:48 +04:00
parent bccf17effe
commit df9ecedf67
14 changed files with 135 additions and 40 deletions

View file

@ -211,11 +211,14 @@ internal fun TextsBlock(
SpacerH(height = TangemTheme.dimens.spacing2)
}
Text(
text = subtitle.resolveReference(),
color = subtitleColor,
style = TangemTheme.typography.caption2,
)
val subtitleText = subtitle.resolveReference()
if (subtitleText.isNotEmpty()) {
Text(
text = subtitleText,
color = subtitleColor,
style = TangemTheme.typography.caption2,
)
}
}
}