From 16de0b54dace794b7e2b9ef9b61d8cf8945db7d6 Mon Sep 17 00:00:00 2001 From: Innei Date: Wed, 9 Apr 2025 21:12:07 +0800 Subject: [PATCH] fix(mobile): update toast icons to use filled variants for better visibility Signed-off-by: Innei --- apps/mobile/native/ios/Modules/Toaster/Toast.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/mobile/native/ios/Modules/Toaster/Toast.swift b/apps/mobile/native/ios/Modules/Toaster/Toast.swift index 08ee5704d..5c1ad14b4 100644 --- a/apps/mobile/native/ios/Modules/Toaster/Toast.swift +++ b/apps/mobile/native/ios/Modules/Toaster/Toast.swift @@ -58,9 +58,9 @@ extension Toast.Position { extension Toast.ToastType { func image() -> UIImage { switch self { - case .error: UIImage(systemName: "xmark.octagon")!.withTintColor(.systemRed) - case .warn: UIImage(systemName: "exclamationmark.triangle")!.withTintColor(.systemOrange) - case .info: UIImage(systemName: "info.circle")!.withTintColor(.systemBlue) + case .error: UIImage(systemName: "xmark.circle.fill")!.withTintColor(.systemRed) + case .warn: UIImage(systemName: "exclamationmark.triangle.fill")!.withTintColor(.systemOrange) + case .info: UIImage(systemName: "info.circle.fill")!.withTintColor(.systemBlue) case .success: UIImage(systemName: "checkmark.circle.fill")!.withTintColor(.systemGreen) } }