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 {