gpt4 book ai didi

react-native - 从样式表响应 native 访问状态

转载 作者:行者123 更新时间:2023-12-04 01:14:24 25 4
gpt4 key购买 nike

我正在尝试根据状态设置容器的背景,但它一直向我显示错误 bg 未定义

constructor(props) {
super(props)
this.state = {
bg:'#fff'
}
}

render(){
return(<View style={styles.container} />)
}

const styles = StyleSheet.create({
container:{
flex: 1,
backgroundColor: this.state.bg,
}
})

最佳答案

更改此代码:

return <View style={[styles.container, backgroundColor: this.state.bg]}/>

对于此代码:
return <View style={[styles.container, {backgroundColor: this.state.bg}]}/>

关于react-native - 从样式表响应 native 访问状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54583037/

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