Peter Mandeljc
07/06/2021, 7:26 AMColumn(
modifier = Modifier.fillMaxHeight(),
verticalArrangement = Arrangement.SpaceBetween
) {
// How to expand this composable height as much as possible...
Text(text = "long text over multiple lines", modifier = Modifier.fillMaxHeight())
// ...without loosing sight of this one?
Text(text = "long text over multiple lines")
}
Filip Wiesner
07/06/2021, 7:29 AMModifier.weight(1f)
on the first textFilip Wiesner
07/06/2021, 7:29 AMLinearLayout
if you are familiar with Android View systemPeter Mandeljc
07/06/2021, 7:32 AM