Hello, 2 quick questions for you folks My first q...
# compose
n
Hello, 2 quick questions for you folks My first question is: is this normal? Seems like a bug to me, should (and where?) I report it?
androidx.compose:compose-bom:2025.07.00
(it's the same with
2024.09.00
)
Copy code
Box(
    modifier = Modifier.fillMaxSize(),
    contentAlignment = Alignment.Center
) {
    Text(
        modifier = Modifier
            .padding(16.dp)
            .background(Color.Magenta),
        text = "Some longlonglong text",
        fontSize = 56.sp
    )
}