Skip to content

Instantly share code, notes, and snippets.

@mustfaunlu
mustfaunlu / AutoResizeText.kt
Created June 9, 2024 18:12 — forked from ardakazanci/AutoResizeText.kt
Auto Resize Text in Jetpack Compose
@Composable
fun AutoTextSizeCard() {
var textLength by remember { mutableStateOf(50) }
val baseText = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. "
val longText = baseText.repeat(textLength / baseText.length + 1).substring(0, textLength)
Card(
modifier = Modifier
.fillMaxWidth()