react-native-phone-number-input icon indicating copy to clipboard operation
react-native-phone-number-input copied to clipboard

disabled the flag or the text input

Open michaelVictoriaDev opened this issue 3 years ago • 3 comments

Can I disabled the flag or the dropdown flag ?

image

image

michaelVictoriaDev avatar Mar 11 '21 01:03 michaelVictoriaDev

When you add

  countryPickerProps={{
                                disableNativeModal: true
                            }}

The styled is broken.

michaelVictoriaDev avatar Mar 16 '21 07:03 michaelVictoriaDev

Workaround that I use:

Prevent modal to show.

<PhoneInput
  countryPickerProps={{ modalProps: { visible: false } }}
/>

gluons avatar May 03 '21 11:05 gluons

disableNativeModal: true works but has styling issues . also <PhoneInput countryPickerProps={{ modalProps: { visible: false } }} /> works only for ios

TruptiUD avatar Mar 08 '23 06:03 TruptiUD