Skip to content

Commit 2346679

Browse files
committed
rename commit
1 parent c0e98c0 commit 2346679

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# react-native-animated-text-input
1+
# react-native-reanimated-text-input
22
React Native text input component with a floating label - using react-native-reanimated.
33

44
## Peer Dependancies
@@ -13,16 +13,16 @@ react-native-reanimated
1313

1414
# Installation
1515
```
16-
yarn add react-native-animated-text-input
16+
yarn add react-native-reanimated-text-input
1717
```
1818
or
1919
```
20-
npm install --save react-native-animated-text-input
20+
npm install --save react-native-reanimated-text-input
2121
```
2222

2323
# Usage
2424
```js
25-
import Input from 'react-native-animated-text-input';
25+
import Input from 'react-native-reanimated-text-input';
2626

2727
<Input
2828
label={"User name"}

example/test/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import {
1414
StatusBar,
1515
} from 'react-native';
1616

17-
import Input from 'react-native-animated-text-input';
17+
import Input from 'react-native-reanimated-text-input';
1818

1919
const App: () => React$Node = () => {
2020
const [userName, setUserName] = useState('')

example/test/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"dependencies": {
1313
"react": "16.9.0",
1414
"react-native": "0.61.5",
15-
"react-native-animated-text-input": "file:../../",
15+
"react-native-reanimated-text-input": "file:../../",
1616
"react-native-reanimated": "^1.7.0"
1717
},
1818
"devDependencies": {

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "react-native-animated-text-input",
2+
"name": "react-native-reanimated-text-input",
33
"version": "1.0.0",
44
"description": "React Native text input component with a floating label - using react-native-reanimated",
55
"main": "index.js",
@@ -8,7 +8,7 @@
88
},
99
"repository": {
1010
"type": "git",
11-
"url": "git+https://github.com/csath/react-native-animated-text-input.git"
11+
"url": "git+https://github.com/csath/react-native-reanimated-text-input.git"
1212
},
1313
"keywords": [
1414
"react-native",
@@ -18,9 +18,9 @@
1818
"author": "csath (chanakaathurugiriya@gmail.com)",
1919
"license": "MIT",
2020
"bugs": {
21-
"url": "https://github.com/csath/react-native-animated-text-input/issues"
21+
"url": "https://github.com/csath/react-native-reanimated-text-input/issues"
2222
},
23-
"homepage": "https://github.com/csath/react-native-animated-text-input#readme",
23+
"homepage": "https://github.com/csath/react-native-reanimated-text-input#readme",
2424
"peerDependencies": {
2525
"lodash": "^4.17.15",
2626
"prop-types": "^15.7.2",

0 commit comments

Comments
 (0)