fixed dark theme bugs

This commit is contained in:
llsajjad
2025-08-10 16:33:30 +03:30
parent 31768fe71d
commit b8d4f38d67
10 changed files with 31 additions and 19 deletions
+2 -2
View File
@@ -99,7 +99,7 @@ class DeadlineItem extends StatelessWidget {
),
),
SizedBox(height: 8.0.h()),
const Divider(),
Divider(color: AppColors.grey20,),
],
),
)
@@ -163,7 +163,7 @@ class DeadlineItem extends StatelessWidget {
],
),
SizedBox(height: 8.0.h()),
const Divider(),
Divider(color: AppColors.grey20,),
],
),
);
+1 -1
View File
@@ -35,7 +35,7 @@ class InfoItem extends StatelessWidget {
),
),
SizedBox(height: 8.0.h()),
const Divider(),
Divider(color: AppColors.grey20,),
],
),
);
@@ -2,7 +2,7 @@ import 'package:flutter/material.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/views/login/widgets/login_button.dart';
import 'package:tm_app/views/shared/base_button.dart';
class TenderDetailActions extends StatelessWidget {
final bool isScreenBig;
@@ -28,7 +28,7 @@ class TenderDetailActions extends StatelessWidget {
isEnabled: true,
text: AppStrings.tenderSubmitButton,
backgroundColor: AppColors.lightBlue,
textColor: AppColors.mainBlue,
textColor: AppColors.primary30,
onPressed: () {},
width: 120.0.w(),
),
@@ -39,7 +39,7 @@ class TenderDetailActions extends StatelessWidget {
BaseButton(
isEnabled: true,
text: AppStrings.tenderSubmitButton,
backgroundColor: AppColors.lightBlue,
backgroundColor: AppColors.primary30,
textColor: AppColors.mainBlue,
onPressed: () {},
),
@@ -16,6 +16,7 @@ class TenderDetailCard extends StatelessWidget {
decoration: BoxDecoration(
color: AppColors.paleOrange,
borderRadius: BorderRadius.circular(8),
border: Border.all(color: AppColors.veryPaleOrange),
),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
@@ -29,7 +29,7 @@ class TenderDetailHeader extends StatelessWidget {
SizedBox(height: 12.0.h()),
_buildTitle(),
SizedBox(height: 10.0.h()),
const Divider(),
Divider(color: AppColors.grey20,),
SizedBox(height: 5.0.h()),
TenderDetailInfoSection(isScreenBig: isScreenBig, detail: detail),
TenderLocationSection(detail: detail),
@@ -9,7 +9,7 @@ import 'package:tm_app/data/services/model/tender_detail_response/tender_detail_
class TenderLocationSection extends StatelessWidget {
final TenderDetailResponseModel detail;
const TenderLocationSection({super.key, required this.detail});
const TenderLocationSection({required this.detail, super.key});
@override
Widget build(BuildContext context) {