Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public final class BottomSheetPresentationController: UIPresentationController {
}

public override var shouldPresentInFullscreen: Bool {
false
true
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we set it only for IOS 17?

I'm not sure how this flag affects older versions

Suggested change
false
true
if #available(iOS 17.0, *) {
return true
} else {
return false
}

}

public override var frameOfPresentedViewInContainerView: CGRect {
Expand Down