@b.taranenko/react-native-country-list
v1.0.12
Published
A react native country selection list
Maintainers
Readme
react-native-country-list

Installation
$ yarn add react-native-country-listBasic Usage
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>
);
}