A react native country-code-picker plugin without any ios&android configuration
npm install react-native-country-code-picker --save or
yarn add react-native-country-code-picker --save
import React, { Component } from 'react';
import CountryCodePicker from 'react-native-country-code-picker';
export default class Example extends Component {
render() {
return (
<CountryCodePicker isShow={true} onPick={(res) => { setTimeout(() => { alert(res.phoneCode) }, 1000) }} />
);
}
}| Property | Type | Default | Description |
|---|---|---|---|
| isShow | Boolean |
false |
Whether show or not |
| onPick | Function |
callback function after picked | |
| animationType | String |
slide |
animation('slide', 'fade', 'none') when show and hide |
| Property | Type | Description |
|---|---|---|
| countryName | String |
country name |
| countryPinyin | String |
country name spell in Chinese PinYin |
| phoneCode | String |
area code |
| countryCode | String |
country code |
