From 15d6cc3bac14f90e09151a43b71bb4ba18a24cd3 Mon Sep 17 00:00:00 2001 From: amirrezaghabeli Date: Sun, 14 Sep 2025 09:38:00 +0330 Subject: [PATCH] fixed notification icon --- assets/icons/notify_icon.svg | 5 +++-- assets/icons/notify_icon_active.svg | 5 +++-- lib/views/notification/pages/d_notification_page.dart | 5 ++++- lib/views/notification/pages/t_notification_page.dart | 5 ++++- 4 files changed, 14 insertions(+), 6 deletions(-) diff --git a/assets/icons/notify_icon.svg b/assets/icons/notify_icon.svg index 7eee2c6..b105462 100644 --- a/assets/icons/notify_icon.svg +++ b/assets/icons/notify_icon.svg @@ -1,4 +1,5 @@ - - + + + diff --git a/assets/icons/notify_icon_active.svg b/assets/icons/notify_icon_active.svg index f45e8b8..7c02a9d 100644 --- a/assets/icons/notify_icon_active.svg +++ b/assets/icons/notify_icon_active.svg @@ -1,4 +1,5 @@ - - + + + diff --git a/lib/views/notification/pages/d_notification_page.dart b/lib/views/notification/pages/d_notification_page.dart index 9d04738..0247447 100644 --- a/lib/views/notification/pages/d_notification_page.dart +++ b/lib/views/notification/pages/d_notification_page.dart @@ -168,7 +168,10 @@ class _DesktopNotificationPageState extends State SizedBox(width: 5.0.w()), SvgPicture.asset( AssetsManager.arrowDownSmall, - color: AppColors.grey80, + colorFilter: ColorFilter.mode( + AppColors.grey80, + BlendMode.srcIn, + ), ), SizedBox(width: 5.0.w()), ], diff --git a/lib/views/notification/pages/t_notification_page.dart b/lib/views/notification/pages/t_notification_page.dart index afd18e6..2bb9941 100644 --- a/lib/views/notification/pages/t_notification_page.dart +++ b/lib/views/notification/pages/t_notification_page.dart @@ -162,7 +162,10 @@ class _TabletNotificationPageState extends State SizedBox(width: 5.0.w()), SvgPicture.asset( AssetsManager.arrowDownSmall, - color: AppColors.grey80, + colorFilter: ColorFilter.mode( + AppColors.grey80, + BlendMode.srcIn, + ), ), SizedBox(width: 5.0.w()), ],