react-native-checkbox in a loop
this.state.allItems.map((res, index) => {
return(
<CheckBox
color="green"
style={{ marginRight: 20, }}
checked={this.state.checked[index]}
onChange={()=> {
let { checked } = this.state;
checked[index] = !checked[index];
this.setState({checked});
}
}
/>