npm install react-native-country-info#### # Using npm
``bash`
npm install react-native-country-info
#### # Using yarn
`bash`
yarn add react-native-country-info
#### Code provided in Examples folder.
`
import CountryInfo from 'react-native-country-info'
...
showFlag={true}
onPressItem={(itemInfo) => {
console.log("Country Name ", itemInfo.name);
console.log("Country Code ", itemInfo.code);
console.log("Country ISD code ", itemInfo.isd_code);
}}
/>
`
- code
- showFlag
- rowStyle
---
code is present default value
| Type | Required |
| ----- | -------- |
| string | Yes |
---
showFlag defalt value is true
| Type | Required |
| -------- | -------- |
| boolean | No |
---
function that should return country info like name, ISD code, code, flag
| Type | Required |
| -------- | -------- |
| function | Yes |
---
style object for row
| Type | Required |
| ------ | -------- |
| object | No |
---
style object for row text
| Type | Required |
| ------ | -------- |
| object | No |
---