Skip to content

Commit 82cfbf3

Browse files
committed
fix: replaced old package name in readme
1 parent 471b10f commit 82cfbf3

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

README.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,23 +22,17 @@ A beautiful, customizable, and animated checkbox component for React Native appl
2222
## Installation
2323

2424
```bash
25-
yarn add react-native-animated-checkbox
25+
yarn add @futurejj/react-native-checkbox
2626
# or
27-
npm install react-native-animated-checkbox
27+
npm install @futurejj/react-native-checkbox
2828
```
2929

3030
### Icon Dependencies
3131

3232
This component uses Material Community Icons. You'll need to install either:
3333

3434
- `@expo/vector-icons` (if using Expo - built-in)
35-
- `react-native-vector-icons` (if using React Native CLI)
36-
37-
```bash
38-
# For React Native CLI
39-
npm install react-native-vector-icons
40-
# Then follow the installation instructions for react-native-vector-icons
41-
```
35+
- `react-native-vector-icons` (if using React Native CLI - follow the installation instructions for `react-native-vector-icons`)
4236

4337
## Usage
4438

@@ -47,7 +41,7 @@ npm install react-native-vector-icons
4741
```jsx
4842
import React, { useState } from 'react';
4943
import { View } from 'react-native';
50-
import { Checkbox } from 'react-native-animated-checkbox';
44+
import { Checkbox } from '@futurejj/react-native-checkbox';
5145

5246
export default function CheckboxExample() {
5347
const [checked, setChecked] = useState(false);

0 commit comments

Comments
 (0)