From f5229417218e6af3a72e3fb9006f84896b7b6053 Mon Sep 17 00:00:00 2001 From: spaced4ndy <8711996+spaced4ndy@users.noreply.github.com> Date: Fri, 3 May 2024 11:47:02 +0400 Subject: [PATCH] increase button size --- apps/ios/Shared/Views/ChatList/ChatsView.swift | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/ios/Shared/Views/ChatList/ChatsView.swift b/apps/ios/Shared/Views/ChatList/ChatsView.swift index 4ed2460bc1..ed36f49e3b 100644 --- a/apps/ios/Shared/Views/ChatList/ChatsView.swift +++ b/apps/ios/Shared/Views/ChatList/ChatsView.swift @@ -308,6 +308,9 @@ struct ChatsSearchBar: View { Color.clear .frame(width: 30, height: 30) Image(systemName: "line.3.horizontal.decrease.circle" + (showUnreadAndFavorites ? ".fill" : "")) + .resizable() + .scaledToFit() + .frame(width: 18, height: 18) .foregroundColor(.accentColor) } }