Change font of on barding button to fontBodyLgMedium.
This commit is contained in:
parent
dcfd4f093c
commit
712a4780b1
1 changed files with 12 additions and 3 deletions
|
|
@ -164,7 +164,10 @@ private fun OnBoardingButtons(
|
||||||
tint = MaterialTheme.colorScheme.onPrimary
|
tint = MaterialTheme.colorScheme.onPrimary
|
||||||
)
|
)
|
||||||
Spacer(Modifier.width(14.dp))
|
Spacer(Modifier.width(14.dp))
|
||||||
Text(text = stringResource(id = R.string.screen_onboarding_sign_in_with_qr_code))
|
Text(
|
||||||
|
text = stringResource(id = R.string.screen_onboarding_sign_in_with_qr_code),
|
||||||
|
style = ElementTheme.typography.fontBodyLgMedium,
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Button(
|
Button(
|
||||||
|
|
@ -174,7 +177,10 @@ private fun OnBoardingButtons(
|
||||||
.fillMaxWidth()
|
.fillMaxWidth()
|
||||||
.testTag(TestTags.onBoardingSignIn)
|
.testTag(TestTags.onBoardingSignIn)
|
||||||
) {
|
) {
|
||||||
Text(text = stringResource(id = signInButtonStringRes))
|
Text(
|
||||||
|
text = stringResource(id = signInButtonStringRes),
|
||||||
|
style = ElementTheme.typography.fontBodyLgMedium,
|
||||||
|
)
|
||||||
}
|
}
|
||||||
if (state.canCreateAccount) {
|
if (state.canCreateAccount) {
|
||||||
OutlinedButton(
|
OutlinedButton(
|
||||||
|
|
@ -183,7 +189,10 @@ private fun OnBoardingButtons(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.fillMaxWidth()
|
.fillMaxWidth()
|
||||||
) {
|
) {
|
||||||
Text(text = stringResource(id = R.string.screen_onboarding_sign_up))
|
Text(
|
||||||
|
text = stringResource(id = R.string.screen_onboarding_sign_up),
|
||||||
|
style = ElementTheme.typography.fontBodyLgMedium,
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Spacer(modifier = Modifier.height(16.dp))
|
Spacer(modifier = Modifier.height(16.dp))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue