I\'m having an issue with the new FlatList component. Specifically, it does not rerender it\'s rows, even though props that the row is dependent on changes.
The F
Look at line #4
_onCategoryChosen = category => { var oldReportCopy = this.state.report; oldReportCopy.selectedCategory = category; this.setState({ report: [...oldReportCopy] }); // Notice this line };