选中复选框时,对本地文本组件移动做出反应

时间:2018-12-17 15:06:54

标签: react-native checkbox text

选中此复选框后,随着复选框像素数的增加,可能会将相邻文本稍微向右移动。鉴于“ position”属性在本机反应方面是如此有限。如何阻止这种情况发生?

 <View style={this.props.checkBoxWrapper}>
    <CheckBox
     title={''}
     checked={this.state.checkedNews}
     onPress={() => this.setState({ checkedNews:!this.state.checkedNews })}
     containerStyle={this.props.checkboxContainerStyle}
     checkedColor='white'
     />
    <Text style={this.props.checkBoxTextStyle}>
    {I18n.t(this.props.labels.checkBoxNewsDialog)}
    </Text>
 </View>

0 个答案:

没有答案