-
-
Save skydoves/2b1604406eee3eb2ba3b0740eb142493 to your computer and use it in GitHub Desktop.
consume_text_ui
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Composable | |
fun ConsumeTextUi( | |
version: UiVersion, | |
textUi: TextUi, | |
modifier: Modifier = Modifier | |
) { | |
if (version == UiVersion.VERSION_1_0) { | |
Text( | |
modifier = modifier, | |
text = textUi.text, | |
color = ServerDrivenTheme.colors.textHighEmphasis, | |
fontSize = textUi.size.sp, | |
fontWeight = textUi.fontWeight.toFontWeight() | |
) | |
} else { | |
Text( | |
modifier = modifier, | |
text = textUi.text, | |
color = ServerDrivenTheme.colors.primary, | |
fontSize = textUi.size.sp, | |
fontWeight = textUi.fontWeight.toFontWeight() | |
) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment