react-native-currency-input icon indicating copy to clipboard operation
react-native-currency-input copied to clipboard

A simple currency input component for both iOS and Android

Results 22 react-native-currency-input issues
Sort by recently updated
recently updated
newest added

onFocus does not work for CurrencyInput. ``` function test(props) { const [value, setValue] = React.useState(null); function focus() { console.log("FOCUSED") } function blur() { console.log("BLURRED") } return ( ); } ```...

There does not seem to be a way to disable text wrapping when using the FakeCurrencyInput. Multiline={false} and numberOfLines={1} both have no impact. ![image](https://github.com/CaioQuirinoMedeiros/react-native-currency-input/assets/134540414/2eb8e585-4f58-4a2c-a348-c17978af5efe) handleAmountChange(e)} prefix="$" delimiter="," precision={2} separator="." minValue={0}...

This patch adds a new property called `customFormatter: (value: number) => string;`. If present it replaces the built-in formatter. The value input is the unformatted number value in the component....

I am using CurrencyInput and currently, the cursor is at the extreme right (0.00|). Currently if I want to enter $12, I have to type 1-2-0-0 I have a requirement...

When typing after 5 little digits it doubles the ones it already has, it happened to me on the Microsoft Swiftkey keyboard

Adding an optional prop to specify the input component to render would be a super nice addition to use any input out there, like the one from React Native Elements:...

https://github.com/CaioQuirinoMedeiros/react-native-currency-input/blob/19f5e3feb9be3a9567cb88b320de676ceb37bab2/src/CurrencyInput.tsx#L166 This memoization does nothing, since `rest` is in the dependencies, and `rest` gets recreated on every render.