How to re-render flatlist?

Use the extraData property on your FlatList component. As the documentation states: By passing extraData={this.state} to FlatList we make sure FlatList will re-render itself when the state.selected changes. Without setting this prop, FlatList would not know it needs to re-render any items because it is also a PureComponent and the prop comparison will not show … Read more