使用姿势不对哈:之所以不显示是因为CheckBox的外层容器View没有宽高,参考如下代码试一下哈:
<View style={{flex:1}}>
<CheckBox
style={{flex: 1, padding: 10}}
onClick={() => {
this.setState({
isChecked: !this.state.isChecked
})
}}
isChecked={this.state.isChecked}
leftText={"CheckBox"}
/>
</View>;