Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

react-native-country-info

anjubala-dev36ISC1.0.7TypeScript support: included

null

react-native, react-native-country, country, country-info

readme

react-native-country-info

Installation

# Using npm

npm install react-native-country-info

# Using yarn

yarn add react-native-country-info

Demo

Code provided in Examples folder.

Usage

import CountryInfo from 'react-native-country-info'
...

<CountryInfo 
    code="+91" 
    showFlag={true} 
    onPressItem={(itemInfo) => {
        console.log("Country Name ", itemInfo.name);
        console.log("Country Code ", itemInfo.code);
        console.log("Country ISD code ", itemInfo.isd_code);
    }}
/>

Props

Methods


code

code is present default value

Type Required
string Yes

showFlag

showFlag defalt value is true

Type Required
boolean No

onPressItem

function that should return country info like name, ISD code, code, flag

Type Required
function Yes

rowStyle

style object for row

Type Required
object No

rowTextStyle

style object for row text

Type Required
object No

License

MIT