We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey Guys, I get this error using TextInputMask
I call number value like this:
const ref... const fileInput = useRef();
const fileInput = useRef();
inside a function... const numberValue = moneyField.getRawValue();
const numberValue = moneyField.getRawValue();
and my component ...
<TextInputMask placeholder="value" value={kids.value} masked="money" ref={moneyField} onChangeText={(value) => setValue({ ...kids, value })} />
Any ideia?
The text was updated successfully, but these errors were encountered:
Hey, @vivipolli
already tried: moneyField.current.getRawValue();
moneyField.current.getRawValue();
Sorry, something went wrong.
onChangeText={(masked, unmasked) => console.log(typeof unmasked)} the second parameter returns the item without mask
No branches or pull requests
Hey Guys, I get this error using TextInputMask
I call number value like this:
const ref...
const fileInput = useRef();
inside a function...
const numberValue = moneyField.getRawValue();
and my component ...
<TextInputMask placeholder="value" value={kids.value} masked="money" ref={moneyField} onChangeText={(value) => setValue({ ...kids, value })} />
Any ideia?
The text was updated successfully, but these errors were encountered: