Denis
01/02/2021, 1:38 AMThis way, nested layout hierarchies are able to preserve the AlignmentLines defined for deeply nested children, making it possible for non-direct parents to use these for positioning and alignment.How to align several deeply nested Text composables by baseline?
Row {
Row { Text("abc", fontSize = TextUnit.Sp(24)) }
Row { Text("xyz", fontSize = TextUnit.Sp(12)) }
}