Navtive ImageView with FastBlur
See link ReactNativeBlurImageViewSample
Sample project for React Native module: react-native-blur-image-view
See Android library: ReactNativeBlurImageView
Set up project:
$npm install react-native-blur-image-view
Add following config to settings.gradle:
include ':react-native-blur-image-view'
project(':react-native-blur-image-view').projectDir = new File(rootProject.projectDir.parent, 'node_modules/react-native-blur-image-view/android')
Add following code to build.gradle:
dependencies {
...
compile project(path: ':react-native-blur-image-view')
}
import BlurImageView from 'react-native-blur-image-view';
...
<BlurImageView style={{width:400, height:200}}
imageUrl={imageData}
/>
####TODO: Add sample and radius params.