From 3fdda6d9aefaf24cb980c0c49b561579826d8ee0 Mon Sep 17 00:00:00 2001 From: spaced4ndy <8711996+spaced4ndy@users.noreply.github.com> Date: Thu, 30 Nov 2023 20:38:06 +0400 Subject: [PATCH] layout --- apps/ios/Shared/Views/ChatList/ChatListView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/ios/Shared/Views/ChatList/ChatListView.swift b/apps/ios/Shared/Views/ChatList/ChatListView.swift index 8372be0a0..0f713a31a 100644 --- a/apps/ios/Shared/Views/ChatList/ChatListView.swift +++ b/apps/ios/Shared/Views/ChatList/ChatListView.swift @@ -125,7 +125,7 @@ struct ChatListView: View { ToolbarItem(placement: .navigationBarTrailing) { switch chatModel.chatRunning { case .some(true): - HStack { + HStack(spacing: 12) { createGroupButton() NewChatInviteButton(showNewChatSheet: $showNewChatSheet) } @@ -141,7 +141,7 @@ struct ChatListView: View { Button { showCreateGroupSheet = true } label: { - Image(systemName: "person.2.circle") + Image(systemName: "plus.message") .resizable() .scaledToFit() .frame(width: 24, height: 24)