MonkeyKingPlus / react-native-picker

cross platform picker for IOS and Android
MIT License
17 stars 11 forks source link

How to update the picker data Dynamically. #5

Open anishtr4 opened 7 years ago

anishtr4 commented 7 years ago

I am trying to update the drop down data dynamically. Can you please let me know how to update the data without refreshing the ui or reloading the ui.

apparition47 commented 6 years ago
  componentWillReceiveProps(nextProps) {
    // dynamic update
    this.singlePicker.setOption(nextProps.data)
  }