From 6b7bc45fed95739a744abd0ba56478f855895025 Mon Sep 17 00:00:00 2001 From: cheykrym Date: Fri, 12 Dec 2025 02:09:43 +0300 Subject: [PATCH] patch chat --- yobble/Views/Chat/PrivateChatView.swift | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/yobble/Views/Chat/PrivateChatView.swift b/yobble/Views/Chat/PrivateChatView.swift index fe784b1..3294b24 100644 --- a/yobble/Views/Chat/PrivateChatView.swift +++ b/yobble/Views/Chat/PrivateChatView.swift @@ -1028,7 +1028,13 @@ private struct ComposerBackgroundModifier: ViewModifier { @ViewBuilder func body(content: Content) -> some View { if theme == .oledDark { - content.background(.ultraThinMaterial) + content + .background(Color.black.opacity(0.85)) // ← глубокий чёрный +// .overlay( +// Color.black.opacity(0.25) // ← лёгкое затемнение сверху +// .allowsHitTesting(false) +// ) +// content.background(.ultraThinMaterial) // content.background(Color.black) // content.background(Color(white: 0.15)) } else {