thegamenicorus / react-native-phone-input

Phone input box for React Native
https://www.npmjs.com/package/react-native-phone-input
MIT License
394 stars 447 forks source link

this.phone.getPickerData() #32

Closed karunkumark closed 4 years ago

karunkumark commented 6 years ago

I am Getting undefined in the code

ketn commented 6 years ago

I believe it should be this.refs.phone.getPickerData()

BaderSerhan commented 6 years ago

doesn't work either

ketn commented 6 years ago

My bad. It depends on how it's implemented in your code. Please post some code for us to diagnose the issue.

BaderSerhan commented 6 years ago

i fixed it by just adding an if clause ... componentDidMount = () => { if (this.phone) this.setState({pickerData: this.phone.getPickerData()}); }