1.0.7 • Published 3 years ago
react-native-country-info v1.0.7
react-native-country-info
Installation
# Using npm
npm install react-native-country-info# Using yarn
yarn add react-native-country-infoDemo
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 |