Harold Scissors
04/13/2023, 5:30 PMrequiredHeight
? For example, this will vertically center align the child in the parent (as per the doc's on requiredHeight). Is there someway to just clip from the bottom?
Parent(
Modifier.height(200.dp)
) {
Child(
Modifier.requiredHeight(400.dp)
)
}
Harold Scissors
04/13/2023, 5:52 PMwrapContentHeight(<http://Alignment.Top|Alignment.Top>, unbounded = true)
worked for me