https://github.com/wrathchaos/react-native-improved-text-input
Improved Text Input with placeholder style option for React Native
https://github.com/wrathchaos/react-native-improved-text-input
Last synced: about 2 months ago
JSON representation
Improved Text Input with placeholder style option for React Native
- Host: GitHub
- URL: https://github.com/wrathchaos/react-native-improved-text-input
- Owner: WrathChaos
- License: mit
- Created: 2019-09-25T20:35:42.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-10-21T03:07:30.000Z (almost 2 years ago)
- Last Synced: 2025-08-14T13:18:10.467Z (about 2 months ago)
- Language: JavaScript
- Homepage: https://www.freakycoder.com
- Size: 1.12 MB
- Stars: 7
- Watchers: 3
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/WrathChaos/react-native-improved-text-input)
[](https://github.com/WrathChaos/react-native-improved-text-input)
[](https://www.npmjs.com/package/react-native-improved-text-input)
[](https://www.npmjs.com/package/react-native-improved-text-input)

[](https://opensource.org/licenses/MIT)
[](https://github.com/prettier/prettier)
![]()
## Installation
Add the dependency:
### React Native:
```ruby
npm i react-native-improved-text-input
```# Usage
## Import
```typescript
import TextInput from "react-native-improved-text-input";
```# Complete Example Usage
```typescript
import React, { useState } from "react";
import { View, StatusBar, SafeAreaView } from "react-native";
import TextInput from "react-native-improved-text-input";const App = () => {
const [textValue, setTextValue] = useState(null);handleTextOnChange = textValue => {
setTextValue(textValue);
};return (
);
};export default App;
```### Future Plans
- [x] LICENSE
- [ ] Write an article about the lib on Medium## Author
FreakyCoder, kurayogun@gmail.com
## License
React Native Improved Text Input is available under the MIT license. See the LICENSE file for more info.