> This way, nested layout hierarchies are able...
# compose
d
This 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?
Copy code
Row {
  Row { Text("abc", fontSize = TextUnit.Sp(24)) }
  Row { Text("xyz", fontSize = TextUnit.Sp(12)) }
}
👍 3