xxxxxxxxxx
<NumberFormat
onChange={(event) => {
console.log(event); // I need this event
console.log(event.target.value); // This is the formatted value, I don't want
}}
onValueChange={(values) => {
console.log(values.value); // Here's the unformatted value, I want
console.log(values.floatValue); // Here's the float value, which is okay, too
}}
prefix="$"
/>