merge branches

This commit is contained in:
amirrezaghabeli
2025-08-18 08:28:18 +03:30
parent 0a54b613cd
commit 36f66bfca5
48 changed files with 2348 additions and 613 deletions
@@ -4,10 +4,11 @@ import 'package:tm_app/core/constants/assets.dart';
import 'package:tm_app/core/constants/strings.dart';
import 'package:tm_app/core/theme/colors.dart';
import 'package:tm_app/core/utils/size_config.dart';
import 'package:tm_app/data/services/model/tender_detail_response/tender_detail_response_model.dart';
import '../../../data/services/model/tender_data/tender_data.dart';
class TenderLocationSection extends StatelessWidget {
final TenderDetailResponseModel detail;
final TenderData detail;
const TenderLocationSection({required this.detail, super.key});
@@ -21,7 +22,7 @@ class TenderLocationSection extends StatelessWidget {
SizedBox(
height: 45.0.h(),
child: Text(
detail.locationTitle ?? '',
'',
style: TextStyle(
color: AppColors.grey80,
fontWeight: FontWeight.w600,
@@ -38,7 +39,7 @@ class TenderLocationSection extends StatelessWidget {
),
SizedBox(width: 4.0.w()),
Text(
detail.country ?? '',
detail.countryCode ?? '',
style: TextStyle(
color: AppColors.grey70,
fontSize: 14.0.sp(),
@@ -47,7 +48,7 @@ class TenderLocationSection extends StatelessWidget {
),
SizedBox(width: 4.0.w()),
Image.asset(
detail.flagAsset ?? AssetsManager.seFlag,
AssetsManager.seFlag,
height: 20.0.h(),
width: 20.0.w(),
),
@@ -60,7 +61,7 @@ class TenderLocationSection extends StatelessWidget {
),
SizedBox(height: 8.0.h()),
Text(
detail.locationDescription ?? '',
detail.description ?? '',
style: TextStyle(fontWeight: FontWeight.w400, fontSize: 14.0.sp()),
),
SizedBox(height: 16.0.h()),