Updated on 2026-08-14

This commit is contained in:
Tangem 2025-01-20 12:20:09 +03:00
parent e14d4c47d0
commit 59f3ed5d72
3 changed files with 7 additions and 0 deletions

View file

@ -43,6 +43,7 @@ internal fun MultiWalletAccessCodeEnter(
stringResourceSafe(R.string.onboarding_access_code_intro_title)
},
style = TangemTheme.typography.subtitle1,
color = TangemTheme.colors.text.primary1,
)
Text(
text = if (reEnterAccessCodeState) {
@ -51,6 +52,7 @@ internal fun MultiWalletAccessCodeEnter(
stringResourceSafe(R.string.onboarding_access_code_hint)
},
style = TangemTheme.typography.body1,
color = TangemTheme.colors.text.secondary,
)
val focusRequester = remember { FocusRequester() }

View file

@ -28,6 +28,7 @@ internal fun MultiWalletAccessCodeIntro(modifier: Modifier = Modifier) {
Text(
text = stringResourceSafe(R.string.onboarding_access_code_intro_title),
style = TangemTheme.typography.h2,
color = TangemTheme.colors.text.primary1,
)
Icon(
imageVector = ImageVector.vectorResource(R.drawable.ic_access_code),
@ -72,11 +73,13 @@ private fun DescriptionItem(title: String, body: String, @DrawableRes iconRes: I
Text(
text = title,
style = TangemTheme.typography.subtitle1,
color = TangemTheme.colors.text.primary1,
)
SpacerH(3.dp)
Text(
text = body,
style = TangemTheme.typography.body2,
color = TangemTheme.colors.text.secondary,
)
}
}

View file

@ -40,6 +40,7 @@ internal fun MultiWalletSeedPhraseStart(state: MultiWalletSeedPhraseUM.Start, mo
modifier = Modifier.size(56.dp),
imageVector = ImageVector.vectorResource(R.drawable.ic_onboarding_text_edit_56),
contentDescription = null,
tint = TangemTheme.colors.text.tertiary,
)
Box(
modifier = Modifier
@ -119,6 +120,7 @@ private fun ReadMoreBlock(state: MultiWalletSeedPhraseUM.Start, modifier: Modifi
Text(
modifier = Modifier.align(Alignment.CenterVertically),
style = TangemTheme.typography.button,
color = TangemTheme.colors.text.primary1,
text = stringResourceSafe(id = R.string.onboarding_seed_button_read_more),
)
}