For CurvedText, if drawing at the bottom, is there...
# compose-wear
y
For CurvedText, if drawing at the bottom, is there a way to flip it so it's not upside down?
j
@Sergio Sancho to confirm - but yes - maybe use
clockwise
?
s
Correct, the CurvedText/BasicCurvedText has a clockwise parameter to determine the direction of the text.
y
Copy code
CurvedRow(clockwise = false, anchor = 90f) {
    CurvedText(text = "ABCDEFGHI")
    CurvedText(text = "JKLMNOPQR")
    CurvedText(text = "STUVWXYZ")
}
message has been deleted
with clockwise = true
message has been deleted
s
Have you tried anti-clockwise and setting the Anchor to somewhere between 135 and 180? That should be drawn the right way up.
j
Clockwise on the CurvedText itself
y
Ahhh, misread that. Thanks!
Copy code
CurvedRow(clockwise = false, anchor = 90f) {
                CurvedText(text = "ABCDEFGHI", clockwise = false)
                CurvedText(text = "JKLMNOPQR", clockwise = false)
                CurvedText(text = "STUVWXYZ", clockwise = false)
            }
message has been deleted
👍 1