Skip to content

Repository files navigation

react-native-numeric-textinput

A React Native TextInput that formats and displays only numeric inputs, including i18n currency formatting. Using the native number-pad keyboard type, this component adds or removes a number from the right side of the total, and gives options for the number of decimal places to use or whether to display locale-appropriate nuber grouping.

Installation

npm install @wwdrew/react-native-numeric-textinput

Caveats

Android currently does not implement the Intl object so a polyfill is required. At the moment it only includes the en locale.

Usage

constExample=()=>{const[value,setValue]=useState()return(<View><NumericInputtype='decimal'decimalPlaces={3}value={value}onUpdate={(value)=>setValue(value)}/><Text>Decimal Value: {value}</Text></View>)}

Props

The only required prop is the onUpdate callback, the rest are optional.

  • onUpdate: (value) => void (Required) - called when the value of the TextInput changes.
  • value: Number - if not provided, will default to 0.
  • type: String - either decimal or currency. If not provided, will default to decimal. If type is currency, you'll also need to supply a currency prop.
  • decimalPlaces: Number - the number of decimal places to display. Only valid for decimal type.
  • currency: String - the ISO 4217 currency code of the currency to display. Defaults to GBP.
  • locale: String - a BCP 78 language tag specifying the locale used for number formatting. Defaults to en-GB.
  • useGrouping: Boolean - whether to use grouping separators. Defaults to true.

Examples

Currency

<NumericInputtype='currency'locale='ja-JP'currency='JPY'value={value}onUpdate={(value)=>setValue(value)}/>

Decimal

<NumericInputtype='decimal'decimalPlaces={1}useGrouping={false}value={value}onUpdate={(value)=>setValue(value)}/>

License

MIT

About

A React Native TextInput that formats and displays only numeric inputs, including currency and percentages.

Resources

Stars

28 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages