Closed Notdefind closed 6 years ago
我现在不能实现单选 可能是同一个问题
onClick() {
// this.setState({
// isChecked: !this.state.isChecked
// })
this.props.onClick();
}
在react-native-check-box/index.js下修改就能显示单选了
此问题已解决 ,新增一个自定义属性进行判断
static defaultProps = { isChecked: false, isChanged: true, leftTextStyle: {}, rightTextStyle: {}, key: true, }
onClick() { if (this.props.isChanged) { this.setState({ isChecked: !this.state.isChecked }) } this.props.onClick(); }
只要能解决都行!
isChecked 绑定状态无效