我想从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>
);
}
}https://stackoverflow.com/questions/44534242
复制相似问题