From aa3e619d37e734ddc150fd6006fcb6bcdc2653b2 Mon Sep 17 00:00:00 2001 From: cheykrym Date: Wed, 22 Oct 2025 05:10:22 +0300 Subject: [PATCH] fix pos --- yobble/Views/Chat/PrivateChatView.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/yobble/Views/Chat/PrivateChatView.swift b/yobble/Views/Chat/PrivateChatView.swift index 6b3b07d..0a53972 100644 --- a/yobble/Views/Chat/PrivateChatView.swift +++ b/yobble/Views/Chat/PrivateChatView.swift @@ -209,7 +209,7 @@ struct PrivateChatView: View { private var composer: some View { VStack(spacing: 10) { - HStack(alignment: .bottom, spacing: 12) { + HStack(spacing: 12) { Button(action: { }) { // переключатель на стикеры Image(systemName: "paperclip") .font(.system(size: 18, weight: .semibold)) @@ -237,6 +237,7 @@ struct PrivateChatView: View { .padding(.trailing, 12) .padding(.bottom, 10) } + .frame(minHeight: 40) .background(Color(.secondarySystemBackground)) .clipShape(RoundedRectangle(cornerRadius: 18, style: .continuous))