-
Notifications
You must be signed in to change notification settings - Fork 304
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
4.1.1 and 4.1.2 Blurview is clipped at the bottom of iPhone running iOS 13.6 #181
Comments
Hi. I ran into this issue as well. It happens when using Looks like it has to do with this fix ( #173 ) in 4.1.1. that fixed an issue with iPad presentations when using split-screen multitasking ( #172 ). The added line in BulletinPresentationAnimationController.swift is:
The problem, best as I can tell, is that we're getting a frame that is in the coordinate system of the ViewController we are presenting "above" (which will always be located at (0,0)), and then applying that frame in the coordinate system of the transitionContext's containerView, which, it seems, is the size of the full window. So if the presentingVC is a modally presented page sheet and its height is less than the window, the blurred background will start at the top and not reach the bottom, leaving the "exposed" area at the bottom of the screen as you describe. A couple of solutions:
|
Hey @gesabo & @kenzinn I am responsible for that PR which probably introduced this issue. I have witnessed this issue couple times myself also and my solution was also to just use the |
This should be fixed in the upcoming release, could you please confirm it? #189 |
I've had a chance to run a few tests with this fix and it seems to have the desired effect: the Thank you. |
I noticed that when using a blurred background the bottom of the iPhone screen below the BulletinBoard that had previously been blurred is now "exposed" showing whatever is underneath the BulletinBoard. I'm not sure why but I rolled back to 4.1.0 and it's displaying correctly, some change between 4.1.0 and 4.1.1 relating to the blurred background must be the cause?
iPhone 11 running iOS 13.6
BB version 4.1.1 and 4.1.2
The text was updated successfully, but these errors were encountered: