1import { BlurView } from "@react-native-community/blur";
2
3<BlurView
4style={styles.absolute}
5blurType="light"
6blurAmount={10}
7reducedTransparencyFallbackColor="white"
8/>
9
10 const styles = StyleSheet.create({
11 container: {
12 justifyContent: "center",
13 alignItems: "center"
14 },
15 absolute: {
16 position: "absolute",
17 top: 0,
18 left: 0,
19 bottom: 0,
20 right: 0
21 }
22});