Updated on 2026-08-14

This commit is contained in:
Tangem 2024-08-29 13:09:30 +05:00
parent 4f3d1f10c7
commit 0cea2545a7
28 changed files with 310 additions and 290 deletions

View file

@ -43,9 +43,9 @@ import com.tangem.core.ui.res.TangemThemePreview
*/
@Composable
fun InputRowDefault(
title: TextReference,
text: TextReference,
modifier: Modifier = Modifier,
title: TextReference? = null,
titleColor: Color = TangemTheme.colors.text.secondary,
textColor: Color = TangemTheme.colors.text.primary1,
iconRes: Int? = null,
@ -66,16 +66,18 @@ fun InputRowDefault(
modifier = Modifier
.weight(1f),
) {
Text(
text = title.resolveReference(),
style = TangemTheme.typography.subtitle2,
color = titleColor,
)
title?.let {
Text(
text = title.resolveReference(),
style = TangemTheme.typography.subtitle2,
color = titleColor,
modifier = Modifier.padding(bottom = TangemTheme.dimens.spacing8),
)
}
Text(
text = text.resolveReference(),
style = TangemTheme.typography.body2,
color = textColor,
modifier = Modifier.padding(top = TangemTheme.dimens.spacing8),
)
}
iconRes?.let {