如何通过在 React Native 中的部分列表中使用复选框来检查或取消选中



如何使用 React Native 中 SectionList 中的复选框来检查或取消选中。 不使用第三方模块。

renderItem(( 属性允许您在列表项中呈现您想要的任何内容。 您可以:

<Checkbox
  checked={this.state.checked}
  onCheck={e => this.setState({ checked: e.target.checked})}/>

相关内容

  • 没有找到相关文章

最新更新