Package Exports
- react-native-blur
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-native-blur) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
React Native Blur
Component implementation for UIVisualEffectView's blur effect.

Install
npm install react-native-blur
- In the XCode's "Project navigator", right click on project's name ➜
Add Files to <...>
- Go to
node_modules
➜react-native-blur
and addRNBlur
folder - Compile and have fun!
Usage example
var Menu = React.createClass({
render: function() {
return (
<Image source={{uri}} style={styles.menu}>
<BlurView style={styles.blur}>
<Text>
Hi, I am a tiny menu item
</Text>
</BlurView>
</Image>
);
}
});
All parent components to blur view would be blurred. Everything inside wouldn't.