Merge pull request 'fixed notification icon' (#125) from fix_notification into main

Reviewed-on: https://repo.ravanertebat.com/TM/tm_app/pulls/125
This commit is contained in:
a.ghabeli
2025-09-14 09:38:35 +03:30
4 changed files with 14 additions and 6 deletions
+3 -2
View File
@@ -1,4 +1,5 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 5C9.5 5 7.5 7 7.5 9.5V12C7.5 12.5 7.3 13.3 7.1 13.7L6.3 15C5.7 16 6.1 17.3 7.2 17.7C10.4 18.7 13.6 18.7 16.8 17.7C17.8 17.4 18.2 16.2 17.7 15.3L16.9 13.7C16.7 13.3 16.5 12.5 16.5 12V9.5C16.5 7 14.5 5 12 5Z" stroke="#777777" stroke-width="1.5" stroke-linecap="round"/>
<path d="M13 18.5C13 19.3 12.3 20 11.5 20C10.7 20 10 19.3 10 18.5" stroke="#777777" stroke-width="1.5" stroke-linecap="round"/>
<path d="M12.02 2.90997C8.71003 2.90997 6.02003 5.59997 6.02003 8.90997V11.8C6.02003 12.41 5.76003 13.34 5.45003 13.86L4.30003 15.77C3.59003 16.95 4.08003 18.26 5.38003 18.7C9.69003 20.14 14.34 20.14 18.65 18.7C19.86 18.3 20.39 16.87 19.73 15.77L18.58 13.86C18.28 13.34 18.02 12.41 18.02 11.8V8.90997C18.02 5.60997 15.32 2.90997 12.02 2.90997Z" stroke="#777777" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M13.87 3.2C13.56 3.11 13.24 3.04 12.91 3C11.95 2.88 11.03 2.95 10.17 3.2C10.46 2.46 11.18 1.94 12.02 1.94C12.86 1.94 13.58 2.46 13.87 3.2Z" stroke="#777777" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M15.02 19.06C15.02 20.71 13.67 22.06 12.02 22.06C11.2 22.06 10.44 21.72 9.90002 21.18C9.36002 20.64 9.02002 19.88 9.02002 19.06" stroke="#777777" stroke-width="1.5" stroke-miterlimit="10"/>
</svg>

Before

Width:  |  Height:  |  Size: 516 B

After

Width:  |  Height:  |  Size: 988 B

+3 -2
View File
@@ -1,4 +1,5 @@
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12 5C9.5 5 7.5 7 7.5 9.5V12C7.5 12.5 7.3 13.3 7.1 13.7L6.3 15C5.7 16 6.1 17.3 7.2 17.7C10.4 18.7 13.6 18.7 16.8 17.7C17.8 17.4 18.2 16.2 17.7 15.3L16.9 13.7C16.7 13.3 16.5 12.5 16.5 12V9.5C16.5 7 14.5 5 12 5Z" fill="#0164FF"/>
<path d="M13 18.5C13 19.3 12.3 20 11.5 20C10.7 20 10 19.3 10 18.5" fill="#0164FF"/>
<path d="M12.02 2.90997C8.71003 2.90997 6.02003 5.59997 6.02003 8.90997V11.8C6.02003 12.41 5.76003 13.34 5.45003 13.86L4.30003 15.77C3.59003 16.95 4.08003 18.26 5.38003 18.7C9.69003 20.14 14.34 20.14 18.65 18.7C19.86 18.3 20.39 16.87 19.73 15.77L18.58 13.86C18.28 13.34 18.02 12.41 18.02 11.8V8.90997C18.02 5.60997 15.32 2.90997 12.02 2.90997Z" fill="#0164FF"/>
<path d="M13.87 3.2C13.56 3.11 13.24 3.04 12.91 3C11.95 2.88 11.03 2.95 10.17 3.2C10.46 2.46 11.18 1.94 12.02 1.94C12.86 1.94 13.58 2.46 13.87 3.2Z" fill="#0164FF"/>
<path d="M15.02 19.06C15.02 20.71 13.67 22.06 12.02 22.06C11.2 22.06 10.44 21.72 9.90002 21.18C9.36002 20.64 9.02002 19.88 9.02002 19.06" fill="#0164FF"/>
</svg>

Before

Width:  |  Height:  |  Size: 428 B

After

Width:  |  Height:  |  Size: 786 B

@@ -168,7 +168,10 @@ class _DesktopNotificationPageState extends State<DesktopNotificationPage>
SizedBox(width: 5.0.w()),
SvgPicture.asset(
AssetsManager.arrowDownSmall,
color: AppColors.grey80,
colorFilter: ColorFilter.mode(
AppColors.grey80,
BlendMode.srcIn,
),
),
SizedBox(width: 5.0.w()),
],
@@ -162,7 +162,10 @@ class _TabletNotificationPageState extends State<TabletNotificationPage>
SizedBox(width: 5.0.w()),
SvgPicture.asset(
AssetsManager.arrowDownSmall,
color: AppColors.grey80,
colorFilter: ColorFilter.mode(
AppColors.grey80,
BlendMode.srcIn,
),
),
SizedBox(width: 5.0.w()),
],