We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2f5bd7 commit 2f74efbCopy full SHA for 2f74efb
PanModal/Controller/PanModalPresentationController.swift
@@ -177,6 +177,11 @@ open class PanModalPresentationController: UIPresentationController {
177
guard let containerView = containerView
178
else { return }
179
180
+ /// Fix ios 17.1+ issue, https://github.com/slackhq/PanModal/pull/204
181
+ if self.panContainerView.frame == .zero {
182
+ self.adjustPresentedViewFrame()
183
+ }
184
+
185
layoutBackgroundView(in: containerView)
186
layoutPresentedView(in: containerView)
187
configureScrollViewInsets()
0 commit comments