fixed rest of the bugs

This commit is contained in:
amirrezaghabeli
2025-09-30 12:37:54 +03:30
parent 87bdc13689
commit 92c759b6c6
6 changed files with 9 additions and 18 deletions
+4 -4
View File
@@ -75,7 +75,7 @@ class _DesktopTendersPageState extends State<DesktopTendersPage> {
if (tenders.isEmpty) {
return const Center(child: Text(CommonStrings.noData));
}
return Column(
children: [
Expanded(
@@ -210,7 +210,7 @@ class _ActionButtons extends StatelessWidget {
),
);
},
text: 'Filter',
text: TendersStrings.filter,
icon: AssetsManager.filter,
iconColor: AppColors.textBlue,
backgroundColor: AppColors.primary2,
@@ -221,7 +221,7 @@ class _ActionButtons extends StatelessWidget {
width: 178.0.w(),
isEnabled: true,
onPressed: () {
showDialog(
showDialog(
context: context,
builder:
(_) => Dialog(
@@ -236,7 +236,7 @@ class _ActionButtons extends StatelessWidget {
),
);
},
text: 'Sort',
text: TendersStrings.sort,
icon: AssetsManager.sort,
iconColor: AppColors.textBlue,
backgroundColor: AppColors.primary2,