Mikolaj
02/18/2026, 4:29 PMSnackbar when it has more than 3 lines 🤔
Is there a workaround? Code in 🧵 .
Using org.jetbrains.compose.material3:material3:1.9.0Mikolaj
02/18/2026, 4:30 PM@Preview
@Composable
fun SnackBarPreview() {
Column(
verticalArrangement = Arrangement.spacedBy(8.dp)
) {
Snackbar {
Text("1")
}
Snackbar {
Text("1\n2")
}
Snackbar {
Text("1\n2\n3")
}
Snackbar {
Text("1\n2\n3\n4")
}
}
}Chrimaeon
02/18/2026, 4:35 PMMikolaj
02/18/2026, 4:38 PMwon't fix . I'll adjust my texts, thank You! 🙌