Skip to content

Instantly share code, notes, and snippets.

@cp-radhika-s
Created November 8, 2022 09:14
Show Gist options
  • Save cp-radhika-s/24d593fb0ca49761e683d7ebf7f91660 to your computer and use it in GitHub Desktop.
Save cp-radhika-s/24d593fb0ca49761e683d7ebf7f91660 to your computer and use it in GitHub Desktop.
@OptIn(ExperimentalTextApi::class)
@Composable
fun ExampleTextOverFlow() {
val textMeasure = rememberTextMeasurer()
Canvas(
onDraw = {
drawRect(color = Color.Black)
drawText(
textMeasurer = textMeasure,
text = //...some long string,
overflow = TextOverflow.Ellipsis,
maxLines = 3
)
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment