You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Coming back to this library to give it another go in a project but I noticed a visual bug with the presentation as it briefly flashes the target view controller in front of the snapshot before the snapshot animates up to reveal the underlying view controller.
I've attached a video of the bug in the simulator when showing the destination view controller.
Note that it doesn't happen all the time and also happens on a physical device.
Here is the code that I'm using to present the view controller: let transitionDelegate = SPLarkTransitioningDelegate() transitionDelegate.customHeight = self.view.frame.height * 0.60 palleteVC.transitioningDelegate = transitionDelegate palleteVC.modalPresentationStyle = .custom palleteVC.modalPresentationCapturesStatusBarAppearance = true
This never happened when I tried out this library for another project back in 2019.
Not sure if its the UIHostingViewController that is being presented or if its something to do with iOS 15
Thanks!
The text was updated successfully, but these errors were encountered:
Coming back to this library to give it another go in a project but I noticed a visual bug with the presentation as it briefly flashes the target view controller in front of the snapshot before the snapshot animates up to reveal the underlying view controller.
I've attached a video of the bug in the simulator when showing the destination view controller.
Note that it doesn't happen all the time and also happens on a physical device.
Simulator.Screen.Recording.-.iPhone.12.-.2022-05-14.at.17.22.19.mp4
Here is the code that I'm using to present the view controller:
let transitionDelegate = SPLarkTransitioningDelegate()
transitionDelegate.customHeight = self.view.frame.height * 0.60
palleteVC.transitioningDelegate = transitionDelegate
palleteVC.modalPresentationStyle = .custom
palleteVC.modalPresentationCapturesStatusBarAppearance = true
self.present(palleteVC, animated: true, completion: nil)
This never happened when I tried out this library for another project back in 2019.
Not sure if its the UIHostingViewController that is being presented or if its something to do with iOS 15
Thanks!
The text was updated successfully, but these errors were encountered: