Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
CaioQuirinoMedeiros committed Jan 25, 2021
2 parents fa3080e + 8dfd99c commit 4c5bbbc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<img src="https://img.shields.io/github/license/CaioQuirinoMedeiros/react-native-currency-input" />
</p>

A simple currency input component for both IOS and Android.
A simple currency input component for both iOS and Android.

The goal of `react-native-currency-input` is to offer a simple and effective way to handle number inputs with custom format, usually a currency input case, but it can actually be used for other purposes.

Expand All @@ -20,7 +20,7 @@ The goal of `react-native-currency-input` is to offer a simple and effective way

## Features

- A simple and practical component for number inputs (read currency input)
- A simple and practical component for number inputs
- It's just a [`<TextInput/>`](https://facebook.github.io/react-native/docs/textinput.html) component, so you can use its props and it's easy to customize
- Set precision, delimiter, separator and unit so you can actually have any number format you want
- It handles negative values, in addition to having a prop to disable it
Expand Down
1 change: 1 addition & 0 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import CurrencyInput from './CurrencyInput';

export { default as FakeCurrencyInput } from './FakeCurrencyInput';
export { default as TextWithCursor } from './TextWithCursor';
export { default as formatNumber } from './utils/formatNumber';
export * from './props';

export default CurrencyInput;

0 comments on commit 4c5bbbc

Please sign in to comment.