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

Android - RN .73.6 - BlurView overlapping whole screen #615

Closed
gladiuscode opened this issue Apr 12, 2024 · 2 comments
Closed

Android - RN .73.6 - BlurView overlapping whole screen #615

gladiuscode opened this issue Apr 12, 2024 · 2 comments

Comments

@gladiuscode
Copy link

We are testing this library in a new project with React Native .73.6 and we have noticed that whenever we use the BlurView to render a bottom component that add a layers of blur on top a scrollable content, it renders a grey background that covers the entire screen.
This is also breaking navigation between screens and makes it impossibile to leverage this library for use cases such a Blur Bottom Bar Navigation.

Steps to reproduce the behavior:

  1. Init a new react-native project with this library.
  2. Setup the App component as follows suggests:

import React from 'react';
import {View, Image, StyleSheet, ScrollView} from 'react-native';
import {BlurView} from '@react-native-community/blur';

export default function App() {
  return (
    <View>
      <ScrollView>
        <Image
          source={{
            uri: 'https://reactnative.dev/img/tiny_logo.png',
          }}
          style={{width: 200, height: 200}}
        />
        <View
          style={{height: 150, marginBottom: 200, backgroundColor: 'green'}}
        />
        <View
          style={{height: 150, marginBottom: 200, backgroundColor: 'green'}}
        />
        <View
          style={{height: 150, marginBottom: 200, backgroundColor: 'green'}}
        />
        <View
          style={{height: 150, marginBottom: 200, backgroundColor: 'green'}}
        />
        <View
          style={{height: 150, marginBottom: 200, backgroundColor: 'green'}}
        />
        <View
          style={{height: 150, marginBottom: 200, backgroundColor: 'green'}}
        />
      </ScrollView>
      <View
        style={{
          height: 200,
          ...StyleSheet.absoluteFillObject,
          bottom: 0,
          top: undefined,
        }}>
        <BlurView
          style={StyleSheet.absoluteFill}
          blurAmount={100}
          blurType={'light'}
        />
      </View>
    </View>
  );
}

  1. Notice how the screen gets covered with a grey background:
    withBlur
@devym-37
Copy link

devym-37 commented Apr 15, 2024

@gladiuscode What about adding overflow: 'hidden' to that View style property ?

      <View
        style={{
          height: 200,
          ...StyleSheet.absoluteFillObject,
          bottom: 0,
          top: undefined,
          overflow: 'hidden'
        }}>
        <BlurView
          style={StyleSheet.absoluteFill}
          blurAmount={100}
          blurType={'light'}
        />
      </View>

@gladiuscode
Copy link
Author

Hi @devym-37
I've managed to fix it partially with your suggestion, thank you!

Now it doesn't render a grey overlay, but it still breaks any usages as a bottom tab bar with react-navigation.
At the moment it navigates and sometimes breaks, rendering a white layer without any component showing up.

I think I'll open the issue on the react-navigation repository later.

So for the moment, i'll close this one

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