-
-
Notifications
You must be signed in to change notification settings - Fork 134
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Overflow widget in right-to-left language #138
Comments
not support right to left language due to TextPainter is not support |
I'm not sure we understood each other. I was able to obtain it with small changes in TextOverflowMixin |
i means TextPainter is not support RTL to get position. it's not just to put it to bottom left but it need to compute position to avoid cut off words or WidgetSpan. |
I understand. Maybe it would be worth creating an issue to Flutter to handle this situation? |
it already has flutter/flutter#111381 |
Hi,
When using language like arabic, text is read from right to left.
So the end of the text is in bottom left corner.
Currently overflow widget displays incorrectly - in bottom right corner, as visible on the screenshot.
Attached below is a code snippet for this example:
If I use overflow: TextOverflow.ellipsis, instead of overflowWidget it displays correctly - on the left end of the text.
The text was updated successfully, but these errors were encountered: