Skip to content

Instantly share code, notes, and snippets.

@merttoptas
Created February 26, 2022 14:54
Show Gist options
  • Save merttoptas/7ef1c38568e440b830a1b76b2d6f8961 to your computer and use it in GitHub Desktop.
Save merttoptas/7ef1c38568e440b830a1b76b2d6f8961 to your computer and use it in GitHub Desktop.
@Composable
fun BloomText(
modifier: Modifier,
text: String,
color: Color = MaterialTheme.colors.secondaryVariant,
fontSize: TextUnit = TextUnit.Unspecified,
letterSpacing: TextUnit = TextUnit.Unspecified,
textAlign: TextAlign? = null,
style: TextStyle = MaterialTheme.typography.subtitle2,
lineHeight: TextUnit = TextUnit.Unspecified,
maxLines: Int = Int.MAX_VALUE,
overflow: TextOverflow = TextOverflow.Clip
) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment