-
-
Save skydoves/591bda2fb0a0eea6ba8942164478c66c to your computer and use it in GitHub Desktop.
consumetextui
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( | |
textUi: TextUi, | |
modifier: Modifier = Modifier | |
) { | |
Text( | |
modifier = modifier, | |
text = textUi.text, | |
color = ServerDrivenTheme.colors.textHighEmphasis, | |
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