From 5feeff5c8fa2225be7572dde5d20bc00ee5b8a3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20S=CC=81liwin=CC=81ski?= Date: Sat, 19 Nov 2022 15:05:47 +0100 Subject: [PATCH 1/2] Fix background to ignore safe area insets. --- Sources/SwiftUIModal/BottomSheetView.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Sources/SwiftUIModal/BottomSheetView.swift b/Sources/SwiftUIModal/BottomSheetView.swift index b1465dfb..e4618b03 100644 --- a/Sources/SwiftUIModal/BottomSheetView.swift +++ b/Sources/SwiftUIModal/BottomSheetView.swift @@ -56,6 +56,7 @@ public struct BottomSheetView: DismissableView where Content: View { dismiss() }) .opacity(show ? 1 : 0) + .ignoresSafeArea() } .contentShape(Rectangle()) .onAppear { From 6885a863e3264f7bbbca8dcd800e7bef623df9c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20S=CC=81liwin=CC=81ski?= Date: Sat, 19 Nov 2022 15:06:39 +0100 Subject: [PATCH 2/2] Add documentation for the 1.0.2 release. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 3c1baace..32cde361 100644 --- a/README.md +++ b/README.md @@ -122,6 +122,7 @@ The documentation for the latest release is available here: * [main](https://nonameplum.github.io/SwiftUIModal/main/documentation/swiftuimodal/) * [1.0.0](https://nonameplum.github.io/SwiftUIModal/1.0.0/documentation/swiftuimodal/) * [1.0.1](https://nonameplum.github.io/SwiftUIModal/1.0.1/documentation/swiftuimodal/) +* [1.0.2](https://nonameplum.github.io/SwiftUIModal/1.0.2/documentation/swiftuimodal/) ## License