We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
我的技术栈:"react": "16.4.1", "react-native": "0.56.0"
使用你的react-native-check-box插件,版本2.1.0,2.0.2,checkbox点击都没有反应。用了版本1.0.4,import CheckBox from 'react-native-check-box' 就会导致程序报错。
The text was updated successfully, but these errors were encountered:
@aioros2016 2.1.7. Checkbox clicks also don't respond.I've modified some of the code and it works.
constructor add this.state = { isChecked: this.props.isChecked }; onClick() add this.setState({ isChecked: !this.state.isChecked }); _renderImage() change 'this.props.isChecked' to 'this.state.isChecked'
Sorry, something went wrong.
No branches or pull requests
我的技术栈:"react": "16.4.1", "react-native": "0.56.0"
使用你的react-native-check-box插件,版本2.1.0,2.0.2,checkbox点击都没有反应。用了版本1.0.4,import CheckBox from 'react-native-check-box' 就会导致程序报错。
The text was updated successfully, but these errors were encountered: