diff --git a/Sources/BottomSheet/Core/Presentation/BottomSheetPresentationController.swift b/Sources/BottomSheet/Core/Presentation/BottomSheetPresentationController.swift index c2a922f..3e0e42d 100644 --- a/Sources/BottomSheet/Core/Presentation/BottomSheetPresentationController.swift +++ b/Sources/BottomSheet/Core/Presentation/BottomSheetPresentationController.swift @@ -150,7 +150,11 @@ public final class BottomSheetPresentationController: UIPresentationController { } public override var shouldPresentInFullscreen: Bool { - false + if #available(iOS 17.0, *) { + return true + } else { + return false + } } public override var frameOfPresentedViewInContainerView: CGRect {