Skip to content

Commit 790ec66

Browse files
committed
Fix package naming in README
1 parent fa92738 commit 790ec66

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
1-
# react-native-progressview
1+
# @react-native-community/react-native-progress-view
22

33
Use `ProgressViewIOS` to render a UIProgressView on iOS.
44
It was part of React Native Core.
55

66
## Getting started
77

8-
`$ npm install react-native-progressview --save`
8+
`$ npm install @react-native-community/react-native-progress-view --save`
99

1010
### Mostly automatic installation
1111

12-
`$ react-native link react-native-progressview`
12+
`$ react-native link @react-native-community/react-native-progress-view`
1313

1414
### Manual installation
1515

1616
#### iOS
1717

1818
1. In XCode, in the project navigator, right click `Libraries``Add Files to [your project's name]`
19-
2. Go to `node_modules``react-native-progressview` and add `RNCProgressView.xcodeproj`
19+
2. Go to `node_modules``@react-native-community/react-native-progress-view` and add `RNCProgressView.xcodeproj`
2020
3. In XCode, in the project navigator, select your project. Add `libRNCProgressView.a` to your project's `Build Phases``Link Binary With Libraries`
2121
4. Run your project (`Cmd+R`)<
2222

2323
## Usage
2424

2525
```javascript
26-
import RNCProgressView from "react-native-progressview";
26+
import ProgressView from "@react-native-community/react-native-progress-view";
2727
```
2828

2929
## Reference

0 commit comments

Comments
 (0)