Fixed some design bug in dark mood and other

This commit is contained in:
llsajjad
2025-09-13 11:35:28 +03:30
parent ffa964f7e5
commit f9f61ef5b2
7 changed files with 20 additions and 8 deletions
@@ -165,6 +165,7 @@ class _LikedTendersDesktopPageState extends State<LikedTendersDesktopPage> {
context: context,
builder: (context) {
return AlertDialog(
backgroundColor: AppColors.backgroundColor,
title: const Text(
LikedTendersStrings.selectPage,
),
@@ -217,7 +218,8 @@ class _LikedTendersDesktopPageState extends State<LikedTendersDesktopPage> {
),
SizedBox(width: 5.0.w()),
SvgPicture.asset(
AssetsManager.arrowdownSmall,
AssetsManager.arrowDownSmall,
color: AppColors.grey80,
),
SizedBox(width: 5.0.w()),
],
@@ -175,6 +175,7 @@ class _LikedTendersTabletPageState extends State<LikedTendersTabletPage> {
context: context,
builder: (context) {
return AlertDialog(
backgroundColor: AppColors.backgroundColor,
title: const Text(
LikedTendersStrings.selectPage,
),
@@ -227,7 +228,8 @@ class _LikedTendersTabletPageState extends State<LikedTendersTabletPage> {
),
SizedBox(width: 5.0.w()),
SvgPicture.asset(
AssetsManager.arrowdownSmall,
AssetsManager.arrowDownSmall,
color: AppColors.grey80,
),
SizedBox(width: 5.0.w()),
],
@@ -120,6 +120,7 @@ class _DesktopNotificationPageState extends State<DesktopNotificationPage>
context: context,
builder: (context) {
return AlertDialog(
backgroundColor: AppColors.backgroundColor,
title: const Text('selectPage'),
content: SizedBox(
width: 200,
@@ -165,7 +166,10 @@ class _DesktopNotificationPageState extends State<DesktopNotificationPage>
),
),
SizedBox(width: 5.0.w()),
SvgPicture.asset(AssetsManager.arrowdownSmall),
SvgPicture.asset(
AssetsManager.arrowDownSmall,
color: AppColors.grey80,
),
SizedBox(width: 5.0.w()),
],
),
@@ -119,6 +119,7 @@ class _TabletNotificationPageState extends State<TabletNotificationPage>
context: context,
builder: (context) {
return AlertDialog(
backgroundColor: AppColors.backgroundColor,
title: const Text('selectPage'),
content: SizedBox(
width: 200,
@@ -159,7 +160,10 @@ class _TabletNotificationPageState extends State<TabletNotificationPage>
),
),
SizedBox(width: 5.0.w()),
SvgPicture.asset(AssetsManager.arrowdownSmall),
SvgPicture.asset(
AssetsManager.arrowDownSmall,
color: AppColors.grey80,
),
SizedBox(width: 5.0.w()),
],
),
+1 -1
View File
@@ -67,7 +67,7 @@ class _DesktopProfilePageState extends State<DesktopProfilePage> {
return Column(
children: [
DesktopNavigationWidget(
currentIndex: 2, // Tenders index
currentIndex: 4, // Tenders index
),
SizedBox(
width: 740,
@@ -102,9 +102,9 @@ class DesktopNavigationWidget extends StatelessWidget {
_navigationItem(
context: context,
text: ProfileStrings.profileTitle,
isActive: currentIndex == 2,
isActive: currentIndex == 4,
onTap: () {
if (currentIndex == 2) {
if (currentIndex == 4) {
return;
} else {
Router.neglect(context, () => ProfileRouteData().go(context));