📌  相关文章
📜  循环中的 react-native-checkbox - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:22.806000             🧑  作者: Mango

代码示例1
this.state.allItems.map((res, index) => {
 return(
      {
                  let { checked } = this.state;
                  checked[index] = !checked[index];
                  this.setState({checked});
         }
 }
/>