Fix Compose background color not going under nav bar

This commit is contained in:
Shadowfacts 2023-02-06 19:51:01 -05:00
parent 99127b617b
commit 74d8adfffe
1 changed files with 1 additions and 0 deletions

View File

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