I'm wondering if I'm able to make Text overflow be...
# compose
z
I'm wondering if I'm able to make Text overflow behave like this With the string: "123456789", assuming only 5 characters will fit it will display as "89..." instead of "12..."
e
I don't understand why that would be "89...", there's nothing in the string after the 89. if you meant it the other way around,
Copy code
Text(overflow = TextOverflow.StartEllipsis)
will result in "...89"
👍 1
z
Ahh I didn't even realize I made that mistake. That's perfect , thanks