Text is not centered vertically in Material3 `Snac...
# compose
m
Text is not centered vertically in Material3
Snackbar
when it has more than 3 lines 🤔 Is there a workaround? Code in 🧵 . Using
org.jetbrains.compose.material3:material3:1.9.0
Copy code
@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")
        }
    }
}
c
A snack bar has by definition max of 2 lines of text with an additional optimal third line for a long action https://m3.material.io/components/snackbar/specs
m
Ok so I understand it's a
won't fix
. I'll adjust my texts, thank You! 🙌
👌🏻 1
👌 1