garganurag893 / react-native-phone-number-input

React Native component for phone number.
MIT License
372 stars 212 forks source link

Is there any way to hide the search bar in Country Modal ? #157

Closed manojkumarboppisetti closed 3 months ago

manojkumarboppisetti commented 4 months ago
image
manojkumarboppisetti commented 3 months ago

I found the solution for this we need to pass countryPickerProps -> withFilter as false to hide search input.

<PhoneInput
    countryPickerProps={{
      withFilter: false,
      countryCodes: ['IN', 'US']
    }}
/>