-
Notifications
You must be signed in to change notification settings - Fork 143
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
Parent View become blurred after dismissing RNBlurModalView #40
Comments
Hi! (My fix: #22) |
Hi @ansani , I think I am using the latest release, I've downloaded it a few weeks ago. @interface MyController () @Property (strong, nonatomic) RNBlurModalView *modalView; And here's how I present and dismiss the modal view //present the modal view
///dismiss the modal view if([self.modalView isVisible]) Is there anything wrong in my code? |
Okay, I found out that setting the modalView to nil after dismissing it fixed the problem. |
I use the library to show a modal view with buttons inside. If any of the buttons is clicked, it will dismiss the RNBlurModalView (by calling [modalView hide]) and show a standard modal view. After dismissing the standard modal view, the parent view is being shown. but when I display another standard modal view from the same parent view and dismiss it, the whole parent view becomes blurred.
Is there anyone out there facing this issue?
The text was updated successfully, but these errors were encountered: