选中此复选框后,随着复选框像素数的增加,可能会将相邻文本稍微向右移动。鉴于“ 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>