tad
@Preview @Composable fun CollapsingHeaderPreview() { Column( Modifier .background(Color.White) .height(176.dp) ) { Box( Modifier .heightIn(56.dp, 128.dp) .fillMaxWidth() .background(Color.Red.copy(alpha = 0.5f)) ) Box( Modifier .height(48.dp) .fillMaxWidth() .background(Color.Green.copy(alpha = 0.5f)) ) } }
weight
Box
heightIn
Albert Chang
fillMaxWidth()
fillMaxSize()
A modern programming language that makes developers happier.