What would you guys recommend to stack rotated tex...
# compose
m
What would you guys recommend to stack rotated text ? I've tried simply using a column but it seems that the rotated texts are merged. In addition, I've notice that the width of the column is still equal to the initial width of the texts.
Copy code
Column(Modifier.border(2.dp, Color.Green, RectangleShape)) {
    Text(text = "I am a text", color = Color.Blue, modifier = Modifier.rotate(-90f))
    Text(text = "I am a text", color = Color.Blue, modifier = Modifier.rotate(-90f))
    Text(text = "I am a text", color = Color.Blue, modifier = Modifier.rotate(-90f))
}
z
Why not rotate the Column
m
@Zun when doing so, the texts are not stacked. They appears has if there was a row wrapper