i want to add checkbox list data from GET API React-Native-Fetch-Blob. have any solution?
this is my code checkbox
class....{
constructor(props) {
super(props);
this.state = {
name: false,
};
}
render(){
return(
<CheckBox checked={this.state.name}/>
<Text style={{marginLeft: 20}}>List Checkbox 1</Text>
);
}
}