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
ephemient
05/22/2025, 3:29 AM
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
zt
05/22/2025, 4:07 AM
Ahh I didn't even realize I made that mistake. That's perfect , thanks