From c7c363782b1a392d58f909248e5f505c1637a2d3 Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Thu, 6 Feb 2025 13:05:32 -0500 Subject: [PATCH] Temporarily make compose toolbar appear above keyboard --- Packages/ComposeUI/Sources/ComposeUI/Views/ComposeView.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Packages/ComposeUI/Sources/ComposeUI/Views/ComposeView.swift b/Packages/ComposeUI/Sources/ComposeUI/Views/ComposeView.swift index b4afc4d7..a2b926c8 100644 --- a/Packages/ComposeUI/Sources/ComposeUI/Views/ComposeView.swift +++ b/Packages/ComposeUI/Sources/ComposeUI/Views/ComposeView.swift @@ -139,7 +139,8 @@ private struct ComposeViewBody: View { if config.showToolbar { toolbarView .frame(maxHeight: .infinity, alignment: .bottom) - .ignoresSafeArea(.keyboard) + // TODO: use a input accessory view (controller) for the toolbar +// .ignoresSafeArea(.keyboard) .transition(.move(edge: .bottom)) .animation(.snappy, value: config.showToolbar) }