Joey
06/10/2021, 3:03 PMJoey
06/10/2021, 3:03 PMBox(
modifier = Modifier
.fillMaxWidth()
.wrapContentSize()
.fillMaxHeight(0.33f)
) {
// 80.dp high Image (logo) centered in this box
}
Column(
modifier = Modifier
.weight(1f)
.fillMaxWidth()
.fillMaxHeight()
.verticalScroll(scrollState)
) {
// Content
}