Quantcast
Channel: React native list of pickers doesn't refresh - Stack Overflow
Viewing all articles
Browse latest Browse all 2

Answer by Mukeyii for React native list of pickers doesn't refresh

$
0
0

Why do you slice arrays and read/update from them, if you need a single value?

Use a second state attribute and connect with your component:

 state = {..., value: ''}

...handle change as follows:

 onValueChange(value, rId) {
    // do something with your arrays, if necessary...
    let sd = this.state.selected_date.slice();
    sd[rId] = value;
    this.setState({value: value, selected_date: sd});
  }

with this picker prop...

  selectedValue={this.state.value}

Viewing all articles
Browse latest Browse all 2

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>