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

White screen when navigate screen with blurview - @react-native-community/blur #1882

Closed
davidgvf opened this issue Sep 5, 2023 · 8 comments
Labels
Close when stale This issue is going to be closed when there is no activity for a while Missing info The user didn't precise the problem enough Missing repro This issue need minimum repro scenario Platform: Android This issue is specific to Android

Comments

@davidgvf
Copy link

davidgvf commented Sep 5, 2023

Description

When navigate to screen use blurview, all screen is white

Steps to reproduce

Uploading screen-capture.webm…

Navigate to screen
These screen have this code:
return (
<BlurView style={{ borderRadius: 16 }} blurAmount={18} overlayColor={'transparent'}>
{props.children}

);

In android

Snack or a link to a repository

a

Screens version

3.24.0

React Native version

0.72.4

Platforms

Android

JavaScript runtime

None

Workflow

React Native (without Expo)

Architecture

None

Build type

None

Device

Android emulator

Device model

Pixel 7

Acknowledgements

Yes

@github-actions github-actions bot added Missing repro This issue need minimum repro scenario Platform: Android This issue is specific to Android labels Sep 5, 2023
@github-actions
Copy link

github-actions bot commented Sep 5, 2023

Hey! 👋

The issue doesn't seem to contain a minimal reproduction.

Could you provide a snack or a link to a GitHub repository under your username that reproduces the problem?

@github-actions github-actions bot added the Missing info The user didn't precise the problem enough label Sep 5, 2023
@github-actions
Copy link

github-actions bot commented Sep 5, 2023

Hey! 👋

It looks like you've omitted a few important sections from the issue template.

Please complete Snack or a link to a repository section.

@kkafar
Copy link
Member

kkafar commented Sep 5, 2023

Hey @davidgvf, our github bot makes some valid points ☝🏻 . Marking it as stale and will close it shortly, unless proper reproduction is provided.

@kkafar kkafar added the Close when stale This issue is going to be closed when there is no activity for a while label Sep 5, 2023
@davidgvf
Copy link
Author

davidgvf commented Sep 7, 2023

Hi @kkafar i updated with a video that reproduce de error

@github-actions github-actions bot removed the Close when stale This issue is going to be closed when there is no activity for a while label Sep 7, 2023
@kkafar
Copy link
Member

kkafar commented Sep 7, 2023

Hey,

  1. The link does point to this exact issue not to any video resource
  2. It would be much simpler if you provided us with snack / github repo with code on which I can reproduce the issue.

@kkafar kkafar added the Close when stale This issue is going to be closed when there is no activity for a while label Sep 7, 2023
@segun-flexible
Copy link

if you check this link, you will see where they said it might misbehave when working with navigation
https://docs.expo.dev/versions/latest/sdk/blur-view/#known-issues

so my advice is not to use this package until they fix the issue of it not allowing us to navigate to other screen

@alduzy
Copy link
Member

alduzy commented Aug 5, 2024

Related issue: #1661

@vivek154
Copy link

Its because of transition animation while navigating.
You can use
screenOptions={{ animation:'none'}}
this config on stack navigator like below.

<RootStack.Navigator screenOptions={{ headerShown: false ,animation:'none'}}>
<RootStack.Screen name={HOME_SCREEN} options={{ headerShown: false }} component={TabScreen} />
<RootStack.Screen name={MY_PROFILE} options={{ headerShown: false }} component={ProfileScreen} />
</RootStack.Navigator >

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Close when stale This issue is going to be closed when there is no activity for a while Missing info The user didn't precise the problem enough Missing repro This issue need minimum repro scenario Platform: Android This issue is specific to Android
Projects
None yet
Development

No branches or pull requests

5 participants