-
Couldn't load subscription status.
- Fork 0
Open
Labels
Description
Describe the bug
When using RNN, Android will crash directly. I really need your help. Here is the sample code:
import React from 'react';
import {
Text,
View,
ImageBackground
} from 'react-native';
import { Header } from 'react-native/Libraries/NewAppScreen';
import { BlurView } from '@sbaiahmed1/react-native-blur';
function App(): React.JSX.Element {
return (
<View style={{flex: 1}}>
<Header />
<View style={{ flex: 1 }}>
<ImageBackground
source={{
uri: 'https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1974&q=80',
}}
style={{ flex: 1, padding: 50 }}
>
<BlurView
style={{
margin: 20,
padding: 20,
borderRadius: 20,
}}
blurAmount={20}
blurType="light"
>
<Text>Blur View Demo</Text>
</BlurView>
</ImageBackground>
</View>
</View>
);
}
export default App;
This is the sample repository address
Additional context
RN 0.77.3
RNN 8.3.2: react-native-navigation
react-native-blur 3.1.0