React Native Blur component
npm install @applicaster/blur@react-native-community/blur
A component for UIVisualEffectView's blur and vibrancy effect on iOS, and BlurView on Android.

- Installation
- Usage
- VibrancyView
- Example React Native app
- Questions?
```
yarn add @react-native-community/blur
Install native dependencies (iOS only):
``
cd ios && pod install
#### BlurView
| Property | Possible Values | Default | Platform
| ----------- | ----------- | ----------- | -----------
| blurType | See blurType below | - | AllblurAmount
| | 0 - 100 (The maximum blurAmount on Android is 32, so higher values will be clamped to 32) | 10 | AllreducedTransparencyFallbackColor
| | Any color | - | iOS onlyblurRadius
| | 0 - 25 | Matches iOS blurAmount | Android onlydownsampleFactor
| | 0 - 25 | Matches iOS blurAmount | Android onlyoverlayColor
| | Any color | Default color based on iOS blurType | Android only
#### blurType
| Name | Description
| ----------- | -----------
| xlight | extra light blur typelight
| | light blur typedark
| | dark blur typeextraDark
| | extra dark blur type (tvOS only)regular
| | regular blur type (iOS 10+ and tvOS only)prominent
| | prominent blur type (iOS 10+ and tvOS only)
#### blurType (iOS 13 only)
| Name | Description
| ----------- | -----------
| chromeMaterial | An adaptable blur effect that creates the appearance of the system chrome.material
| | An adaptable blur effect that creates the appearance of a material with normal thickness.thickMaterial
| | An adaptable blur effect that creates the appearance of a material that is thicker than normal.chromeMaterial
| | An adaptable blur effect that creates the appearance of the system chrome.thinMaterial
| | An adaptable blur effect that creates the appearance of an ultra-thin material.ultraThinMaterial
| | An adaptable blur effect that creates the appearance of an ultra-thin material.chromeMaterialDark
| | A blur effect that creates the appearance of an ultra-thin material and is always dark.materialDark
| | A blur effect that creates the appearance of a thin material and is always dark.thickMaterialDark
| | A blur effect that creates the appearance of a material with normal thickness and is always dark.thinMaterialDark
| | A blur effect that creates the appearance of a material that is thicker than normal and is always dark.ultraThinMaterialDark
| | A blur effect that creates the appearance of the system chrome and is always dark.chromeMaterialLight
| | An adaptable blur effect that creates the appearance of the system chrome.materialLight
| | An adaptable blur effect that creates the appearance of a material with normal thickness.thickMaterialLight
| | An adaptable blur effect that creates the appearance of a material that is thicker than normal.thinMaterialLight
| | An adaptable blur effect that creates the appearance of a thin material.ultraThinMaterialLight
| | An adaptable blur effect that creates the appearance of an ultra-thin material.
Complete usage example that works on iOS and Android:
`javascript
import React, { Component } from "react";
import { View, Image, Text, StyleSheet } from "react-native";
import { BlurView } from "@react-native-community/blur";
export default function Menu() {
return (
source={{ uri }}
style={styles.absolute}
/>
{/ in terms of positioning and zIndex-ing everything before the BlurView will be blurred /}
blurType="light"
blurAmount={10}
reducedTransparencyFallbackColor="white"
/>
)
}
const styles = StyleSheet.create({
container: {
justifyContent: "center",
alignItems: "center"
},
absolute: {
position: "absolute",
top: 0,
left: 0,
bottom: 0,
right: 0
}
});
`
In this example, the Image component will be blurred, because the BlurView in positioned on top. But the Text will stay unblurred.
If the accessibility setting Reduce Transparency is enabled the BlurView will use reducedTransparencyFallbackColor as it's background color rather than blurring. If no reducedTransparencyFallbackColor is provided, theBlurViewwill use the default fallback color (white, black, or grey depending on blurType)
Uses the same properties as BlurView (blurType, blurAmount, and reducedTransparencyFallbackColor).
The vibrancy effect lets the content underneath a blurred view show through more vibrantly
VibrancyView is only supported on iOS. Also note that the VibrancyView must contain nested views
`javascript
import { VibrancyView } from "@react-native-community/blur";
export default function Menu() {
return (
)
}
`
This project includes an example React Native app, which was used to make the GIF in this README.
You can run the apps by following these steps:
Clone the repository
``
git clone https://github.com/react-native-community/react-native-blur.git
Install dependencies
``
yarn
#### Run the app
```
yarn example android/ios
Feel free to create an issue