How to apply RTL #883
Replies: 2 comments
-
use Directionality widget. final textDirection =
intl.Bidi.detectRtlDirectionality(htmlString, isHtml: true)
? TextDirection.rtl
: TextDirection.ltr;
return Directionality(
textDirection: textDirection,
child: HtmlWidget(htmlString),
); |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
How to apply text Direction as rtl or ltr in this widget.
that tag is not working I suppose
Beta Was this translation helpful? Give feedback.
All reactions