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 @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return Directionality( return Scaffold(
textDirection: TextDirection.rtl,
child: Scaffold(
backgroundColor: AppColors.backgroundColor, backgroundColor: AppColors.backgroundColor,
appBar: appBar(context: context, title: YourTendersStrings.yourTenders), appBar: appBar(context: context, title: YourTendersStrings.yourTenders),
body: Column( body: Column(
@@ -106,7 +104,6 @@ class _YourTendersMobilePageState extends State<YourTendersMobilePage> {
), ),
], ],
), ),
),
); );
} }
} }