Skip to content

Commit 2dca68f

Browse files
committed
Rename to @react-native-community/blur everywhere
1 parent fcdf9d7 commit 2dca68f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ ext {
7070
5. Include the library in your code:
7171

7272
```javascript
73-
import { BlurView, VibrancyView } from "react-native-blur";
73+
import { BlurView, VibrancyView } from "@react-native-community/blur";
7474
```
7575

7676
6. Compile and have fun!
@@ -96,7 +96,7 @@ import { BlurView, VibrancyView } from "react-native-blur";
9696
```javascript
9797
import React, { Component } from "react";
9898
import { View, Image, Text, findNodeHandle, StyleSheet } from "react-native";
99-
import { BlurView } from "react-native-blur";
99+
import { BlurView } from "@react-native-community/blur";
100100

101101
export default class Menu extends Component {
102102
constructor(props) {
@@ -159,7 +159,7 @@ Note that `viewRef` is only required if you need to support Android. See the [An
159159
> (Note: `VibrancyView` is only supported on iOS. Also note that the `VibrancyView` must contain nested views.)
160160
161161
```javascript
162-
import { VibrancyView } from "react-native-blur";
162+
import { VibrancyView } from "@react-native-community/blur";
163163

164164
export default class Menu extends Component {
165165
render() {

example/App.android.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import {
1515
} from 'react-native';
1616
import SegmentedControlTab from 'react-native-segmented-control-tab';
1717

18-
import { BlurView } from 'react-native-blur';
18+
import { BlurView } from '@react-native-community/blur';
1919

2020
const BLUR_TYPES = ['xlight', 'light', 'dark'];
2121

example/App.ios.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {
1212
View,
1313
} from 'react-native';
1414

15-
import { BlurView, VibrancyView } from 'react-native-blur';
15+
import { BlurView, VibrancyView } from '@react-native-community/blur';
1616

1717
export default class Basic extends Component {
1818
constructor(props) {

0 commit comments

Comments
 (0)