react-native-phone-number-input
react-native-phone-number-input copied to clipboard
Clear PhoneInput
Thank you for the library.
I was to clear phone Input when I click close button
Thanks!
How did you achieved that ?
Can phone number cleared ? Is there something by which we can achieve this ?
@PreetikaSingh I know that this is not a good solution but this works
const phoneInput = useRef(null);
const cleanTextFields = () => {
phoneInput.current.setState({number:''})
};
<PhoneInput ref={phoneInput}/>
- create the ref
- assign ref to the PhoneInput Component
- in order to clear the input field you can use the
ref.current.setState({number:''})
Hello everyone!
I still have this question, the solution above didn't work for me. Any ideas? Thanks