npm install react-native-roll-picker --save
data = {a: 'bbb'} // json type
name = 'a' // json name with {a: 'bbb'}
onRowChange = {index => {}} // when row changed, return the index
ref.setDataSource(json) // reset data with json
<Picker
data = {json}
ref = '_Picker'
name = 'jsonName'
onRowChange = {index => {}}
/>
this.refs._Picker.setDataSource(json);