gpt4 book ai didi

javascript - 如何禁用react-native-elements复选框touchableopacity?

转载 作者:行者123 更新时间:2023-12-01 00:52:29 25 4
gpt4 key购买 nike

实际上,我正在使用react-native-element设计语言。当我用来实现复选框时,它的行为就像我不想要的可触摸不透明度。

<CheckBox
containerStyle={{ backgroundColor: "transparent", borderWidth: 0 }}
center
size={14}
title="vegetarian"
textStyle={{
fontSize: theme.FONT_SIZE_X_SMALL,
fontWeight: theme.FONT_WEIGHT_LIGHT
}}
checkedColor="red"
checked={this.state.checked}
onPress={() => this.setState({ checked: !this.state.checked })}
/>;

最佳答案

您可以传递 Component 属性(默认情况下为 TouchableOpacity),例如将 TouchableWithoutFeedback 作为值。

<CheckBox
Component={TouchableWithoutFeedback}
containerStyle={{ backgroundColor: "transparent", borderWidth: 0 }}
center
size={14}
title="vegetarian"
textStyle={{
fontSize: theme.FONT_SIZE_X_SMALL,
fontWeight: theme.FONT_WEIGHT_LIGHT
}}
checkedColor="red"
checked={this.state.checked}
onPress={() => this.setState({ checked: !this.state.checked })}
/>;

关于javascript - 如何禁用react-native-elements复选框touchableopacity?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56869192/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com