Need help understanding height/requiredHeight modifiers. I want to enforce a minimum height, in my understanding that means ignoring other incoming (height) constraints. Below doesn’t work as I expected, is there a right/possible way to do this?
Component(Modifier.height(8.dp))
@Composable
fun Component(modifier: Modifier) {
Box(modifier.requiredHeightIn(min = 40.dp)) {
}
}