iOS 16 beta 2 - landscape mode wrong orientation
My app is in landscape only, but the toast is shown on portrait (it worked well on iOS 15)
I had the same issue.
I've come up with the same issue, Has anyone of you fixed it ?
I created a PR for it. Can someone test it, please? https://github.com/devxoul/Toaster/pull/215
I created a PR for it. Can someone test it, please? #215
I can confirm that the solution works:
Change line 186 in ToastWindow.swift: From: if self.shouldRotateManually { To: if #unavailable(iOS 16.0), self.shouldRotateManually {
Thanks for the update!
Actually this library breaks the device orientation when we try to force one controller to landscape.
me too.