removed directionality

This commit is contained in:
amirrezaghabeli
2025-09-17 14:39:11 +03:30
parent f8f417729f
commit a6e2089eef
@@ -35,9 +35,7 @@ class _YourTendersMobilePageState extends State<YourTendersMobilePage> {
@override
Widget build(BuildContext context) {
return Directionality(
textDirection: TextDirection.rtl,
child: Scaffold(
return Scaffold(
backgroundColor: AppColors.backgroundColor,
appBar: appBar(context: context, title: YourTendersStrings.yourTenders),
body: Column(
@@ -106,7 +104,6 @@ class _YourTendersMobilePageState extends State<YourTendersMobilePage> {
),
],
),
),
);
}
}