$ npm install react-native-picker-select-n --save
$ react-native link react-native-picker-select-n
import React from "react";
import { View } from "react-native";
import { Icon } from "native-base";
import PickerSelectN from 'react-native-picker-select-n';
const PickerSelectN = props => {
return(
<View style={{ flex: 1 }}>
<PickerSelectN
placeholder={"Please select"}
onValueChange={val => console.log(val)}
value={val}
itemStyle={{ color: "white" }}
Icon={<Icon name="md-caret-down" />}
/>
</View>
);
};