From 0fbacddaf42fe443739b0fc08c8f67e202fa1903 Mon Sep 17 00:00:00 2001 From: Oleksandr Momotiuk Date: Wed, 25 Jun 2025 23:16:38 +0200 Subject: [PATCH] fix bug with ignoring bottom safe area --- Sources/ScrollKit/ScrollViewWithStickyHeader.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/ScrollKit/ScrollViewWithStickyHeader.swift b/Sources/ScrollKit/ScrollViewWithStickyHeader.swift index 7b9ea5b..aa12a5e 100644 --- a/Sources/ScrollKit/ScrollViewWithStickyHeader.swift +++ b/Sources/ScrollKit/ScrollViewWithStickyHeader.swift @@ -110,7 +110,7 @@ public struct ScrollViewWithStickyHeader: View { scrollView(in: geo) navbarOverlay(in: geo) } - .edgesIgnoringSafeArea(.all) + .edgesIgnoringSafeArea(.top) } .prefersNavigationBarHidden() #if os(iOS)