
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
react-native-region-country-picker
Advanced tools
Various country picker for iOS and Android
$ npm install react-native-region-country-picker --save
OR
$ yarn add react-native-region-country-picker
import CountryPicker from "react-native-region-country-picker";
let countryPickerRef = undefined;
// use countryPickerRef
countryPickerRef.open();
countryPickerRef.close();
<CountryPicker
countryPickerRef={(ref: any) => {
countryPickerRef = ref;
}}
enable={true}
darkMode={false}
countryCode={"US"}
containerConfig={{
showFlag: true,
showCallingCode: true,
showCountryName: true,
showCountryCode: true,
}}
modalConfig={{
showFlag: true,
showCallingCode: true,
showCountryName: true,
showCountryCode: true,
}}
onSelectCountry={(data: any) => {
console.log("DATA", data);
}}
onInit={(data: any) => {
console.log("DATA", data);
}}
onOpen={() => {
console.log("Open");
}}
onClose={() => {
console.log("Close");
}}
containerStyle={{
container: {},
flagStyle: {},
callingCodeStyle: {},
countryCodeStyle: {},
countryNameStyle: {},
}}
modalStyle={{
container: {},
searchStyle: {},
tileStyle: {},
itemStyle: {
itemContainer: {},
flagStyle: {},
countryCodeStyle: {},
countryNameStyle: {},
callingNameStyle: {},
},
}}
title={"Country"}
searchPlaceholder={"Search"}
showCloseButton={true}
showModalTitle={true}
/>;
| Props | Default | Options/Info |
|---|---|---|
| enable (Boolean) | true | Show component that choose the country. |
| countryPickerRef (Function) | null | Get the open() and close() modal methods. |
| darkMode (Boolean) | true | Dark mode for country modal. |
| countryCode (String) | US | Country code displayed is selected at start. |
| modalConfig (Object) | US | Config for component that choose the country. Note: See more details below. |
| containerConfig (Object) | US | Config for component that choose the country. Note: See more details below. |
| onSelectCountry (Function) | null | Called when the user chooses a country and returns information for the selected country. |
| onInit (Function) | null | Called when the component set default country and returns information for the selected country. |
| onOpen (Function) | null | Called when the open modal. |
| onClose (Function) | null | Called when the close modal. |
| title (String) | "Country" | The title of the modal select country. |
| showCloseButton (Boolean) | true | Show the close button of the modal select country. |
| showModalTitle (Boolean) | true | Show the title of the modal select country. |
| containerStyle (Object) | null | Style for component that choose the country. Note: See more details below. |
| modalStyle (Object) | null | Style for modal select country. Note: See more details below. |
| renderChildren (Component) | null | The child component replaces the component element of the library |
| Props | Default | Options/Info |
|---|---|---|
| container (Object) | style | Style for component container. |
| flagStyle (Object) | style | Style for the icon country. |
| callingCodeStyle (Object) | style | Style for country code. |
| countryNameStyle (Object) | style | Style for country name. |
| countryCodeStyle (Object) | style | Style for country code. |
| Props | Default | Options/Info |
|---|---|---|
| showFlag (Boolean) | true | Show/hide Flag. |
| showCallingCode (Boolean) | true | Show/hide Calling Code. |
| showCountryName (Boolean) | true | Show/hide Country Name. |
| showCountryCode (Boolean) | true | Show/hide Country Code. |
| Props | Default | Options/Info |
|---|---|---|
| container (Object) | style | Style for modal container |
| searchStyle (Object) | style | Style for modal search input |
| tileStyle (Object) | style | Style for modal title |
| itemStyle (Object) | style | Style for item select country Note: See more details below. |
| Props | Default | Options/Info |
|---|---|---|
| itemContainer (Object) | style | Style for item country container |
| flagStyle (Object) | style | Style for the icon country. |
| callingCodeStyle (Object) | style | Style for country code. |
| countryNameStyle (Object) | style | Style for country name. |
| countryCodeStyle (Object) | style | Style for country code. |
FAQs
React native library country picker
We found that react-native-region-country-picker demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.