From 15ba47a3e056a4b1afec288ddd9ea2d366cbe12d Mon Sep 17 00:00:00 2001 From: spaced4ndy <8711996+spaced4ndy@users.noreply.github.com> Date: Thu, 30 Nov 2023 17:37:56 +0400 Subject: [PATCH] layout --- apps/ios/Shared/Views/ChatList/ChatListView.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/ios/Shared/Views/ChatList/ChatListView.swift b/apps/ios/Shared/Views/ChatList/ChatListView.swift index 3291c9eb8a..8372be0a0e 100644 --- a/apps/ios/Shared/Views/ChatList/ChatListView.swift +++ b/apps/ios/Shared/Views/ChatList/ChatListView.swift @@ -114,11 +114,11 @@ struct ChatListView: View { } ToolbarItem(placement: .principal) { HStack(spacing: 4) { - Text("Chats") - .font(.headline) if chatModel.chats.count > 0 { toggleFilterButton() } + Text("Chats") + .font(.headline) } .frame(maxWidth: .infinity, alignment: .center) } @@ -141,10 +141,10 @@ struct ChatListView: View { Button { showCreateGroupSheet = true } label: { - Image(systemName: "person.2") + Image(systemName: "person.2.circle") .resizable() .scaledToFit() - .frame(width: 28, height: 28) + .frame(width: 24, height: 24) } }