unCommentted second card row in home

This commit is contained in:
llsajjad
2025-08-27 08:43:06 +03:30
parent 5aab723ffd
commit 925e178f16
4 changed files with 35 additions and 36 deletions
+24 -24
View File
@@ -174,30 +174,30 @@ class DesktopHomePage extends StatelessWidget {
},
),
),
// SizedBox(width: 10),
// TenderCard(
// backgroundColor: AppColors.orange10,
// iconPath: 'assets/icons/shield.svg',
// title: AppStrings.tenderValue,
// amount: homeResponse.tenderValue ?? '0',
// textColor: Color(0xFFE5821E),
// enableTap: true,
// width: 178,
// height: 148,
// onTap: () {},
// ),
// SizedBox(width: 10),
// TenderCard(
// backgroundColor: AppColors.grey10,
// iconPath: 'assets/icons/edit.svg',
// title: AppStrings.thunderStatus,
// amount: homeResponse.thunderStatus ?? '0',
// textColor: Color(0xFF9E9E9E),
// enableTap: false,
// width: 178,
// height: 148,
// onTap: () {},
// ),
SizedBox(width: 10),
TenderCard(
backgroundColor: AppColors.orange10,
iconPath: 'assets/icons/shield.svg',
title: AppStrings.tenderValue,
amount: '3',
textColor: Color(0xFFE5821E),
enableTap: true,
width: 178,
height: 148,
onTap: () {},
),
SizedBox(width: 10),
TenderCard(
backgroundColor: AppColors.grey10,
iconPath: 'assets/icons/edit.svg',
title: AppStrings.likedTenders,
amount: '2',
textColor: Color(0xFF9E9E9E),
enableTap: false,
width: 178,
height: 148,
onTap: () {},
),
],
);
}