我想从 GET API React-Native-Fetch-Blob 添加复选框列表数据。有什么解决办法吗?
这是我的代码复选框
class....{
constructor(props) {
super(props);
this.state = {
name: false,
};
}
render(){
return(
<CheckBox checked={this.state.name}/>
<Text style={{marginLeft: 20}}>List Checkbox 1</Text>
);
}
}