From 74d8adfffefa95a8404abc30e0f7b6fd9a761549 Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Mon, 6 Feb 2023 19:51:01 -0500 Subject: [PATCH] Fix Compose background color not going under nav bar --- Tusker/Screens/Compose/ComposeView.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Tusker/Screens/Compose/ComposeView.swift b/Tusker/Screens/Compose/ComposeView.swift index 5391786f..164caba0 100644 --- a/Tusker/Screens/Compose/ComposeView.swift +++ b/Tusker/Screens/Compose/ComposeView.swift @@ -96,6 +96,7 @@ struct ComposeView: View { ZStack(alignment: .top) { // just using .background doesn't work; for some reason it gets inset immediately after the software keyboard is dismissed Color.appBackground + .edgesIgnoringSafeArea(.all) mainList .scrollDismissesKeyboardInteractivelyIfAvailable()