Temporarily make compose toolbar appear above keyboard

This commit is contained in:
Shadowfacts 2025-02-06 13:05:32 -05:00
parent c929c40cc9
commit c7c363782b

View File

@ -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)
}