Skip to content
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

it seems this isn't working on iOS 18 #4

Open
kelvinOfoli opened this issue Sep 26, 2024 · 6 comments
Open

it seems this isn't working on iOS 18 #4

kelvinOfoli opened this issue Sep 26, 2024 · 6 comments

Comments

@kelvinOfoli
Copy link

kelvinOfoli commented Sep 26, 2024

image

The items in the background are supposed to be blurred out.. works perfect on Android and iOS versions below 18...

@kelvinOfoli
Copy link
Author

@vstacked
Copy link

vstacked commented Nov 4, 2024

did u find another solution or an alternative @kelvinOfoli ?

@kelvinOfoli
Copy link
Author

@vstacked
I resulted to using "@react-native-community/blur" just for iOS 18 and above

  if (majorVersionIOS >= 18 && isIOS) {
    return <RNBlurView style={styles.container} blurType={blurType} />;
  }

@vstacked
Copy link

vstacked commented Nov 4, 2024

Yes, in the end I also used that, but with that library I encountered another problem, which was a white screen. According to this software-mansion/react-native-screens#1882 (comment), need to set animation to none. Did you @kelvinOfoli experience something similar?

@kelvinOfoli
Copy link
Author

I think I remember experiencing something like this only for android..
from what I remember giving the container of the blueView (@react-native-community/blur) a
overflow: "hidden"
fixed the issue.

@vstacked
Copy link

vstacked commented Nov 4, 2024

I think I remember experiencing something like this only for android.. from what I remember giving the container of the blueView (@react-native-community/blur) a overflow: "hidden" fixed the issue.

Oh I see, okay I'll try it later, thank you

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants