Fixed icon color of web and tablet pagination

This commit is contained in:
llsajjad
2025-10-12 11:36:24 +03:30
parent 6d247b0476
commit ecd6f863c2
4 changed files with 31 additions and 12 deletions
@@ -175,7 +175,7 @@ class _LikedTendersDesktopPageState extends State<LikedTendersDesktopPage> {
),
),
SizedBox(width: 5.0.w()),
SvgPicture.asset(AssetsManager.arrowDownSmall),
SvgPicture.asset(AssetsManager.arrowDownSmall,colorFilter: ColorFilter.mode(AppColors.grey60, BlendMode.srcIn),),
SizedBox(width: 5.0.w()),
],
),
@@ -190,7 +190,13 @@ class _LikedTendersTabletPageState extends State<LikedTendersTabletPage> {
),
),
SizedBox(width: 5.0.w()),
SvgPicture.asset(AssetsManager.arrowDownSmall),
SvgPicture.asset(
AssetsManager.arrowDownSmall,
colorFilter: ColorFilter.mode(
AppColors.grey60,
BlendMode.srcIn,
),
),
SizedBox(width: 5.0.w()),
],
),