We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
My app supports only the portrait mode. However, if I rotate the device (in real life), a banner will appear in wrong coordinates.
Look at the video:
How can I deal with it and always keep the banner at the bottom?
My code:
let queue = NotificationBannerQueue() MyAppDelegate.internetBanner = StatusBarNotificationBanner(title: MyStore.shared.whTemplate?.internet_diconnected_text ?? "Internet is not connected", style: .danger) ... // case 1 MyAppDelegate.internetBanner?.dismiss() let banner = StatusBarNotificationBanner(title: title, style: .success) banner.duration = 0.5 banner.show(queuePosition: .front, bannerPosition: .bottom, queue: queue, on: nil) ... // case 2 let banner = MyAppDelegate.internetBanner banner.autoDismiss = false banner.show(queuePosition: .front, bannerPosition: .bottom, queue: queue, on: nil)
The text was updated successfully, but these errors were encountered:
Same problem here, anybody knows how to fix that problem? Thank you!
Sorry, something went wrong.
Same issue. any solutions?
No branches or pull requests
My app supports only the portrait mode. However, if I rotate the device (in real life), a banner will appear in wrong coordinates.
Look at the video:
RPReplay_Final1675783622.mov
How can I deal with it and always keep the banner at the bottom?
My code:
The text was updated successfully, but these errors were encountered: