Hello, I need some help. Using `IntrinsicSize` do...
# compose
v
Hello, I need some help. Using
IntrinsicSize
does not wrap the content and truncates the height of the composable. Code and screenshots in thread ->
Without intrinsic size
Copy code
Row(modifier = Modifier) {
    DividerVerticalThick(modifier = Modifier.fillMaxHeight())

    Column(
        modifier = Modifier.wrapContentWidth(Alignment.Start),
        verticalArrangement = Arrangement.spacedBy(Dimensions.Spacing04)
    ) {
        items.forEach {
            ProductItem(item = it)
        }
    }
}
With Intrinsic size Notice that the last “potatoes” is gone. This is reproducible on specific screen sizes.
Copy code
Row(modifier = Modifier.height(IntrinsicSize.Min)) {
    DividerVerticalThick(modifier = Modifier.fillMaxHeight())

    Column(
        modifier = Modifier.wrapContentWidth(Alignment.Start),
        verticalArrangement = Arrangement.spacedBy(Dimensions.Spacing04)
    ) {
        items.forEach {
            ProductItem(item = it)
        }
    }
}
It truncates more lines if I add more items. What am I missing here?