I'm having some weird behavior with `IntrinsicSize...
# compose
a
I'm having some weird behavior with
IntrinsicSize
and
Arrangement.SpacedBy
(code in thread)
Copy code
@Composable
fun IntrinsicSizeTest() {
    Row(
        modifier = Modifier
            .background(Color.White)
            .height(IntrinsicSize.Min),
        horizontalArrangement = Arrangement.spacedBy(32.dp)
    ) {
        Box(
            modifier = Modifier
                .background(Color.Blue)
                .weight(1f)
                .aspectRatio(1f)
        )
        Box(
            modifier = Modifier
                .background(Color.Red)
                .fillMaxHeight()
                .width(32.dp)
        )
    }
}
Which results in
Does anyone know what's going on here / is this a bug?