0
我想從GET API React-Native-Fetch-Blob添加複選框列表數據。有任何解決方案?如何從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>
);
}
}
你確切的要求是什麼?你可以說得更詳細點嗎。 –