CaioQuirinoMedeiros / react-native-currency-input

A simple currency input component for both iOS and Android
https://www.npmjs.com/package/react-native-currency-input
MIT License
158 stars 25 forks source link

Avoid negative number #8

Closed robinsonlovatto-misc closed 3 years ago

robinsonlovatto-misc commented 3 years ago

Hello, very nice work.

Is it possible to add the property ignoreNegative to FakeCurrencyInput?

The goal is to forbid the user to type the minus sign. I tried to use minValue={0}, but this not worked.

CaioQuirinoMedeiros commented 3 years ago

@rlovatto You actually just reported a bug. Setting minValue={0} was supposed to work, but, as you said, it was not.

I just released version 1.0.1 with that fixed. Let me know if you still have any problems.

Thanks!

robinsonlovatto-misc commented 3 years ago

It worked, thank you.