1.1.0 • Published 5 years ago

@wwdrew/react-native-numeric-textinput v1.1.0

Weekly downloads
476
License
MIT
Repository
github
Last release
5 years ago

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

const Example = () => {
    const [value, setValue] = useState()

    return (
      <View>
        <NumericInput
          type='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

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

Decimal

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

License

MIT

1.1.0

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago