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

Cannot read property 'open' of undefined #80

Open michaelVictoriaDev opened 5 years ago

michaelVictoriaDev commented 5 years ago

When I hit the function in the example

    onPressFlag() {
        this.myCountryPicker.open()
    }

it says

mtahir08 commented 5 years ago

@michaelVictoriaDev change your function from onPressFlag() { this.myCountryPicker.open() } to onPressFlag = () => { this.myCountryPicker.open(); } Actually this is binding issue