how to change text direction to RTL in SearchDelegate
From the research, I found a way to change the color, but I did not find a way to change the direction of the text
thanks
class MySearchDelegte extends SearchDelegate {
@override
String get searchFieldLabel => 'ابحث حسب اسم المكتب';
.....
.....
@override
ThemeData appBarTheme(BuildContext context) {
return Theme.of(context).copyWith(
appBarTheme: Theme.of(context).appBarTheme.copyWith(
color: const Color(0xff202c3b),
),
);
}
}