Skip to content

Instantly share code, notes, and snippets.

@KatieBarnett
Created July 11, 2023 10:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KatieBarnett/6821b2ed7cd085aa26f7b7b967dccdbf to your computer and use it in GitHub Desktop.
Save KatieBarnett/6821b2ed7cd085aa26f7b7b967dccdbf to your computer and use it in GitHub Desktop.
Non resizing text
@FontScalePreviews
@Composable
fun NonResizingTextPreview() {
ExperimentsTheme {
Box(modifier = Modifier.width(200.dp)) {
Text(
text = "This is non-resizing text with font scale ${LocalDensity.current.fontScale}",
fontSize = 16.sp.nonScaledSp
)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment