Slide 45
Slide 45 text
measure w: 200, h: 300
w: 0–200, h: 0–300
measure
measure
w: 0–200, h: 0–300
Box(
modifier = Modifier
.fillMaxSize()
.wrapContentSize()
.size(50.dp)
.background(Color.Blue)
)
val childConstraints = Constraints(
minWidth = 50,
maxWidth = 50,
minHeight = 50,
maxHeight = 50,
)
w: 50, h: 50