This commit is contained in:
spaced4ndy 2023-11-30 20:38:06 +04:00
parent 15ba47a3e0
commit 3fdda6d9ae

View File

@ -125,7 +125,7 @@ struct ChatListView: View {
ToolbarItem(placement: .navigationBarTrailing) { ToolbarItem(placement: .navigationBarTrailing) {
switch chatModel.chatRunning { switch chatModel.chatRunning {
case .some(true): case .some(true):
HStack { HStack(spacing: 12) {
createGroupButton() createGroupButton()
NewChatInviteButton(showNewChatSheet: $showNewChatSheet) NewChatInviteButton(showNewChatSheet: $showNewChatSheet)
} }
@ -141,7 +141,7 @@ struct ChatListView: View {
Button { Button {
showCreateGroupSheet = true showCreateGroupSheet = true
} label: { } label: {
Image(systemName: "person.2.circle") Image(systemName: "plus.message")
.resizable() .resizable()
.scaledToFit() .scaledToFit()
.frame(width: 24, height: 24) .frame(width: 24, height: 24)