我开始学习React Native,对于我的项目,我创建了一个简单的Button组件,可以在我的项目中重用。我根据变量' disabled'动态设置不透明度值,但是,按钮的外观不会随着不透明度变量的值而变化。我四处搜寻,但我没有找到解释..
任何帮助将不胜感激。
这是我的源代码:
import React from 'react'
import { View, Text, TouchableOpacity, StyleSheet } from 'react-native'
import PropTypes from 'prop-types'
//TODO: arrumar o problema com a opacidade
export default function Button({text, onPress, style, disabled, textStyle}) {
let opacity = disabled === true ? 0.5 : 1
// console.log('opacity', opacity)
return (
<TouchableOpacity onPress={onPress} style={[defaultStyles.button, style, {opacity: opacity}]}
disabled={disabled}>
<Text style={[defaultStyles.text, textStyle]}>{text}</Text>
</TouchableOpacity>
)
}
const defaultStyles = StyleSheet.create({
text: {
color: 'white'
},
button: {
backgroundColor: 'black',
margin: 15,
padding: 15,
borderRadius: 10
},
})
Button.propTypes = {
text: PropTypes.string,
onPress: PropTypes.func,
style: PropTypes.oneOfType([
PropTypes.string,
PropTypes.array,
PropTypes.object
]),
disabled: PropTypes.bool,
textStyle: PropTypes.oneOfType([
PropTypes.string,
PropTypes.array,
PropTypes.object
])
}
编辑: 这是调用按钮
的代码class NewDeck extends Component {
state={
title: null
}
submit = () => {
const { add, goBack } = this.props
let deck = {...this.state}
if(!deck['deckId']){
deck['deckId'] = Date.now()
deck['logs'] = []
}
!deck['cardsId'] && (deck['cardsId'] = [])
add(deck).then(() => {
this.props.navigation.navigate('Deck', {deckId: deck.deckId, title: deck.title})
this.setState({title: null})
}
)
}
render(){
const disabled = this.state.title === null || this.state.title.length === 0
return (
<KeyboardAwareScrollView resetScrollToCoords={{ x: 0, y: 0 }}
contentContainerStyle={styles.container}>
<Text style={textStyles.title2}>Whats the title of your deck?</Text>
<TextInput editable={true} style={[styles.input, textStyles.body]}
placeholder='Type title here'
maxLength={25}
value={this.state.title}
onChangeText={(text) => {
this.setState({title: text})
}}
/>
<Button
onPress={this.submit}
text='Submit'
style={{backgroundColor: colors.pink}}
textStyle={textStyles.body}
disabled={!this.state.title}
/>
</KeyboardAwareScrollView>
)
}
}
如果newDeck组件的标题为空或null,则disabled变量为true。当此变量为true时,按钮的不透明度应仅为0.5。当值变为false时,不透明度再次变为1。如果我记录组件中不透明度的值,我可以看到它从0.5变为1,但组件的外观不会改变。
答案 0 :(得分:19)
不确定 TouchableOpacity 组件是否存在错误,但在单击该组件之前,不透明度不会在重新渲染时更新
修复您的问题只需将可触摸内容包装在查看中,然后将不透明度应用于视图而不是可触摸
export default function Button({text, onPress, style, disabled, textStyle}) {
const opacity = disabled === true ? 0.5 : 1
// console.log('opacity', opacity)
return (
<TouchableOpacity onPress={onPress} disabled={disabled}
style={[defaultStyles.button, style]}>
<View style={{opacity}}>
<Text style={[defaultStyles.text, textStyle]}>{text}</Text>
</View>
</TouchableOpacity>
)
}
答案 1 :(得分:0)
在我看来,正确的解决方案是使用setOpacityTo方法。
在render
:
render() {
const opacityValue = this.props.disabled ? 0.5 : 1;
return (
<TouchableOpacity style={{ opacity: opacityValue }} ref={(btn) => { this.btn = btn; }} onPress={this.onPress}>
<Text>{this.props.text}</Text>
</TouchableOpacity>
);
}
接下来,您可以在setOpacityTo
componentDidUpdate
道具更改中使用disabled
方法:
componentDidUpdate(prevProps) {
const { disabled } = this.props;
if (disabled !== prevProps.disabled) {
const opacityValue = disabled ? 0.5 : 1;
this.btn.setOpacityTo(opacityValue);
}
}
答案 2 :(得分:0)
如果您以后使用的是 React Native版本0.63 ,则Pressable是更优雅的解决方案,其不透明度更改按预期工作。
<Pressable
style={{
opacity: item.isSelected ? 0.5 : 1
}}>
//Your button content goes here
</Pressable>
答案 3 :(得分:0)
对我来说,当我同时更改 disabled
道具和不透明度时,它起作用了。
我想问题是 TouchableOpacity
中的不透明度是一个 Animated.Value
,它覆盖了 style
道具中的值并且不会改变,当 style
道具变化...