Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created September 11, 2024 02:41
Show Gist options
  • Save skydoves/2b1604406eee3eb2ba3b0740eb142493 to your computer and use it in GitHub Desktop.
Save skydoves/2b1604406eee3eb2ba3b0740eb142493 to your computer and use it in GitHub Desktop.
consume_text_ui
@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