Open tonibardina opened 2 years ago
Not receiving event object when sending onBlur in textInputProps
onBlur
textInputProps
I am trying to get the event object from the onBlur method but I'm not getting it. Reviewing the code I have seen it is not sent. I
onBlur={ onBlur ? (e) => { _onBlur(e); onBlur(); // <- Here } : _onBlur }
Is there any specific reason for that?
Add onBlur to textInputProps and log the arguments received (no arguments are sent)
btw I have created a PR in case you want to add it -> https://github.com/FaridSafi/react-native-google-places-autocomplete/pull/840
Issue
Not receiving event object when sending
onBlur
intextInputProps
Description
I am trying to get the event object from the
onBlur
method but I'm not getting it. Reviewing the code I have seen it is not sent. IIs there any specific reason for that?
Reproduction
Add
onBlur
totextInputProps
and log the arguments received (no arguments are sent)