Skip to content
New issue

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-native-check-box插件无法使用 #76

Open
aioros2016 opened this issue Aug 21, 2018 · 1 comment
Open

react-native-check-box插件无法使用 #76

aioros2016 opened this issue Aug 21, 2018 · 1 comment

Comments

@aioros2016
Copy link

我的技术栈:"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' 就会导致程序报错。

@juviaW
Copy link

juviaW commented Jan 10, 2019

@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'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants