Pablo Costa
02/12/2021, 3:58 PMRow(
modifier = Modifier.padding(horizontal = 16.dp),
horizontalArrangement = Arrangement.spacedBy(16.dp)
) {
HeighDependsOnContentComposable(modifier = Modifier.weight(1f))
HeighDependsOnContentComposable(modifier = Modifier.weight(1f))
}
Is there any way I can have both composables with the same height? This is taking the heigh of the tallest one?
Is this one of the scenarios where ConstraintLayout would help?
Thanks!!! 🙏Adam Powell
02/12/2021, 4:00 PMPablo Costa
02/12/2021, 4:03 PMKshitij Patil
02/13/2021, 3:34 PM