I have a blog app, I need to keep the layout of my app in LTR (because i like the app in English style) but I need to make the language of my posts in RTL only.
How to make the full app using RTL style for posts?
I have a blog app, I need to keep the layout of my app in LTR (because i like the app in English style) but I need to make the language of my posts in RTL only.
How to make the full app using RTL style for posts?
If you want to force LTR directionality even when the language is RTL, you can wrap your whole widget tree under MaterialApp
using Directionality
widget. Try this:
MaterialApp(
...
builder: (context, child) {
return Directionality(textDirection: TextDirection.ltr, child: child!);
},
);