Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created September 9, 2024 11:42
Show Gist options
  • Save skydoves/591bda2fb0a0eea6ba8942164478c66c to your computer and use it in GitHub Desktop.
Save skydoves/591bda2fb0a0eea6ba8942164478c66c to your computer and use it in GitHub Desktop.
consumetextui
@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