-
Couldn't load subscription status.
- Fork 570
Description
Using BlurView on Android, makes the screen blank.
Initially I solved this by creating a hook that allows me to render BlurView only after its parent is mounted
<View style={[styles.textContainer]} ref={textRef}> {isTextMounted && <BlurView style={[styles.blurContainer, StyleSheet.absoluteFill]} blurType="light" blurAmount={7.5} reducedTransparencyFallbackColor="rgba(0,0,0,0.15)" />} <View />
And this worked fine, until I navigate to another stack. If the last screen was using a BlurView, the next screen will also be blank.
I tried several other things like set `screenOptions={{animation: 'none'}} or changing the opacity of the component in node_modules, but nothing worked.