added tenders list

This commit is contained in:
amirrezaghabeli
2025-08-18 08:28:41 +03:30
parent 36f66bfca5
commit d983a6869f
-64
View File
@@ -27,7 +27,6 @@ class TendersListItem extends StatelessWidget {
child: Column( child: Column(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
<<<<<<< HEAD
SizedBox( SizedBox(
width: double.infinity, width: double.infinity,
child: Text( child: Text(
@@ -54,30 +53,6 @@ class TendersListItem extends StatelessWidget {
children: [ children: [
Text( Text(
'${AppStrings.tenderDeadline} :', '${AppStrings.tenderDeadline} :',
=======
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
// tender.createdTime ?? '',
'',
style: TextStyle(
fontSize: 12.0.sp(),
fontWeight: FontWeight.w400,
color: AppColors.grey60,
),
),
Container(
width: 91.0.w(),
height: 24.0.h(),
decoration: BoxDecoration(
color: AppColors.green20,
borderRadius: BorderRadius.circular(8),
),
alignment: Alignment.center,
child: Text(
'',
>>>>>>> tender_tender_detail
style: TextStyle( style: TextStyle(
fontSize: 15.0.sp(), fontSize: 15.0.sp(),
fontWeight: FontWeight.w500, fontWeight: FontWeight.w500,
@@ -97,11 +72,7 @@ class TendersListItem extends StatelessWidget {
), ),
SizedBox(height: 12.0.h()), SizedBox(height: 12.0.h()),
Text( Text(
<<<<<<< HEAD
tender.title!, tender.title!,
=======
'',
>>>>>>> tender_tender_detail
style: TextStyle( style: TextStyle(
overflow: TextOverflow.ellipsis, overflow: TextOverflow.ellipsis,
fontSize: 16.0.sp(), fontSize: 16.0.sp(),
@@ -110,7 +81,6 @@ class TendersListItem extends StatelessWidget {
), ),
), ),
SizedBox(height: 8.0.h()), SizedBox(height: 8.0.h()),
<<<<<<< HEAD
SizedBox( SizedBox(
width: double.infinity, width: double.infinity,
child: Text( child: Text(
@@ -123,16 +93,6 @@ class TendersListItem extends StatelessWidget {
fontWeight: FontWeight.w400, fontWeight: FontWeight.w400,
color: AppColors.grey70, color: AppColors.grey70,
), ),
=======
Text(
'',
maxLines: 3,
overflow: TextOverflow.ellipsis,
style: TextStyle(
fontSize: 14.0.sp(),
fontWeight: FontWeight.w400,
color: AppColors.grey70,
>>>>>>> tender_tender_detail
), ),
), ),
SizedBox(height: 18.0.h()), SizedBox(height: 18.0.h()),
@@ -144,11 +104,7 @@ class TendersListItem extends StatelessWidget {
SvgPicture.asset(AssetsManager.location), SvgPicture.asset(AssetsManager.location),
SizedBox(width: 1.0.w()), SizedBox(width: 1.0.w()),
Text( Text(
<<<<<<< HEAD
tender.countryCode!, tender.countryCode!,
=======
'',
>>>>>>> tender_tender_detail
style: TextStyle( style: TextStyle(
fontSize: 12.0.sp(), fontSize: 12.0.sp(),
fontWeight: FontWeight.w400, fontWeight: FontWeight.w400,
@@ -162,7 +118,6 @@ class TendersListItem extends StatelessWidget {
child: Image.asset(AssetsManager.seFlag, fit: BoxFit.cover), child: Image.asset(AssetsManager.seFlag, fit: BoxFit.cover),
), ),
Spacer(), Spacer(),
<<<<<<< HEAD
// Container( // Container(
// width: 96.0.w(), // width: 96.0.w(),
// height: 24.0.h(), // height: 24.0.h(),
@@ -180,25 +135,6 @@ class TendersListItem extends StatelessWidget {
// ), // ),
// ), // ),
// ), // ),
=======
Container(
width: 96.0.w(),
height: 24.0.h(),
decoration: BoxDecoration(
color: AppColors.grey30,
borderRadius: BorderRadius.circular(88),
),
alignment: Alignment.center,
child: Text(
'',
style: TextStyle(
fontSize: 12.0.sp(),
fontWeight: FontWeight.w500,
color: AppColors.grey60,
),
),
),
>>>>>>> tender_tender_detail
], ],
), ),
], ],