diff --git a/README.md b/README.md index 1725d50..9c09e81 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ ext { 5. Include the library in your code: ```javascript -import { BlurView, VibrancyView } from "react-native-blur"; +import { BlurView, VibrancyView } from "@react-native-community/blur"; ``` 6. Compile and have fun! @@ -96,7 +96,7 @@ import { BlurView, VibrancyView } from "react-native-blur"; ```javascript import React, { Component } from "react"; import { View, Image, Text, findNodeHandle, StyleSheet } from "react-native"; -import { BlurView } from "react-native-blur"; +import { BlurView } from "@react-native-community/blur"; export default class Menu extends Component { constructor(props) { @@ -159,7 +159,7 @@ Note that `viewRef` is only required if you need to support Android. See the [An > (Note: `VibrancyView` is only supported on iOS. Also note that the `VibrancyView` must contain nested views.) ```javascript -import { VibrancyView } from "react-native-blur"; +import { VibrancyView } from "@react-native-community/blur"; export default class Menu extends Component { render() { diff --git a/example/App.android.js b/example/App.android.js index f03ab0c..04c4593 100644 --- a/example/App.android.js +++ b/example/App.android.js @@ -15,7 +15,7 @@ import { } from 'react-native'; import SegmentedControlTab from 'react-native-segmented-control-tab'; -import { BlurView } from 'react-native-blur'; +import { BlurView } from '@react-native-community/blur'; const BLUR_TYPES = ['xlight', 'light', 'dark']; diff --git a/example/App.ios.js b/example/App.ios.js index 45b79a2..ba05c67 100644 --- a/example/App.ios.js +++ b/example/App.ios.js @@ -12,7 +12,7 @@ import { View, } from 'react-native'; -import { BlurView, VibrancyView } from 'react-native-blur'; +import { BlurView, VibrancyView } from '@react-native-community/blur'; export default class Basic extends Component { constructor(props) {