我正在尝试从react native设置复选框标题的样式:
<CheckBox
checked={this.state.checked}
onPress={() => this.setState({ checked: !this.state.checked})}
containerStyle={styles.checkBox}
title='Complete task'
fontStyle={styles.checkBoxText}
/>
checkBoxText: {
color: '#4a4a4a',
fontWeight: 'normal',
},
但是我什么也没得到。反正有样式吗?
答案 0 :(得分:0)
我认为您应该使用textStyle
而不是fontStyle
。此处的文档:https://react-native-training.github.io/react-native-elements/docs/checkbox.html#textstyle
答案 1 :(得分:0)
对于那些无法更改某些标题属性的人,请添加title={<Text style={{}}>Hello</Text>}