Skip to content

Commit dcf0aa0

Browse files
committed
fix(name): change name of library
1 parent 3c43dcd commit dcf0aa0

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ The objective of the library is to ease the discomfort of scrolling by implement
33
## Installation
44

55
```sh
6-
yarn install @appandflow/rn-magic-scroll
6+
yarn install @appandflow/react-native-magic-scroll
77
```
88

99
```sh
10-
npm i @appandflow/rn-magic-scroll
10+
npm i @appandflow/react-native-magic-scroll
1111
```
1212

1313
### Android
@@ -29,7 +29,7 @@ On Android, make sure to set `android:windowSoftInputMode` in your `AndroidManif
2929
Wrap your form/screen within our ScrollView. Utilizing context requires it to be one level higher for enhanced control over your inputs. Alternatively, you can employ the Higher Order Component (HOC) for this purpose.
3030

3131
```tsx
32-
import { MagicScroll } from '@appandflow/rn-magic-scroll';
32+
import { MagicScroll } from '@appandflow/react-native-magic-scroll';
3333

3434
// rest of your imports
3535

@@ -48,7 +48,7 @@ export default MagicScroll.withSmartScroll(YourScreen);
4848
Then inside your form/component you can use our TextInput.
4949

5050
```tsx
51-
import { MagicScroll } from '@appandflow/rn-magic-scroll';
51+
import { MagicScroll } from '@appandflow/react-native-magic-scroll';
5252

5353
// rest of your imports
5454

@@ -97,7 +97,7 @@ We encourage you to wrap our TextInput with your custom one.
9797
Here an example
9898

9999
```tsx
100-
import { MagicScroll } from '@appandflow/rn-magic-scroll';
100+
import { MagicScroll } from '@appandflow/react-native-magic-scroll';
101101

102102
// rest of your imports
103103

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@appandflow/rn-magic-scroll",
2+
"name": "@appandflow/react-native-magic-scroll",
33
"version": "0.1.11",
44
"description": "Library to help managing keyboard interaction in form",
55
"main": "lib/commonjs/index",

0 commit comments

Comments
 (0)