$ yarn add react-native-country-list
import { CountrySelection } from 'react-native-country-list';
render(){
const { selected } = this.state;
return (
<View style={styles.container}>
<CountrySelection action={(item) => this.onCountrySelection(item)} selected={selected}/>
</View>
);
}