An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

React Native Improved Text Input

[![Battle Tested ✅](https://img.shields.io/badge/-Battle--Tested%20%E2%9C%85-03666e?style=for-the-badge)](https://github.com/WrathChaos/react-native-improved-text-input)

[![Improved Text Input with placeholder style option for React Native](https://img.shields.io/badge/-Improved%20Text%20Input%20with%20placeholder%20style%20option%20for%20React%20Native-lightgrey?style=for-the-badge)](https://github.com/WrathChaos/react-native-improved-text-input)

[![npm version](https://img.shields.io/npm/v/react-native-improved-text-input.svg?style=for-the-badge)](https://www.npmjs.com/package/react-native-improved-text-input)
[![npm](https://img.shields.io/npm/dt/react-native-improved-text-input.svg?style=for-the-badge)](https://www.npmjs.com/package/react-native-improved-text-input)
![Platform - Android and iOS](https://img.shields.io/badge/platform-Android%20%7C%20iOS-blue.svg?style=for-the-badge)
[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg?style=for-the-badge)](https://opensource.org/licenses/MIT)
[![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg?style=for-the-badge)](https://github.com/prettier/prettier)


React Native Improved Text Input

## 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.