This commit is contained in:
cheykrym 2025-10-22 05:31:01 +03:00
parent c6e17f0fc5
commit 2c31d25596

View File

@ -209,7 +209,7 @@ struct PrivateChatView: View {
private var composer: some View {
VStack(spacing: 10) {
HStack(alignment: .bottom, spacing: 3) {
HStack(alignment: .bottom, spacing: 4) {
Button(action: { }) { // переключатель на стикеры
Image(systemName: "paperclip")
.font(.system(size: 18, weight: .semibold))
@ -272,9 +272,9 @@ struct PrivateChatView: View {
private var sendButton: some View {
Button(action: sendCurrentMessage) {
Image(systemName: "paperplane.fill")
.font(.system(size: 18, weight: .semibold))
.font(.system(size: 16, weight: .semibold))
.foregroundColor(Color.white.opacity(isSendDisabled ? 0.6 : 1))
.frame(width: 40, height: 40)
.frame(width: 36, height: 36)
.background(isSendDisabled ? Color.accentColor.opacity(0.4) : Color.accentColor)
.clipShape(Circle())
}