-
Notifications
You must be signed in to change notification settings - Fork 112
Open
Description
Describe the bug
In the IOS version the keyboard has a forcing of the "comma" character, but the component uses only the version with the "dot" character. I used a fix with ref, would it be possible to have a native props to fix this iussue?
this is the fix i made
function onChange(value) {
this.value = value.replace(",",".");
}
useEffect(()=>{
if(inputRef!=null && inputRef.current != null){
inputRef.current.onChange = onChange;
}
},[inputRef])
foxriver76
Metadata
Metadata
Assignees
Labels
No labels