我正在遵循一个教程,我目前有这个代码,我试图改变一个基于属性的背景颜色...这是它看起来像什么
import React from 'react';
import { View, Text, StyleSheet } from 'react-native';
const SomeComponent = ({ bgColor }) => (
<View style={styles.wrapper(bgColor)}>
<Text style={styles.text}>3333</Text>
</View>
);
const styles = StyleSheet.create({
wrapper: color => ({
flex: 1,
backgroundColor: color,
}),
text: {
color: 'red',
},
});
我一直收到styles.wrapper is not a function
我该怎么解决这个问题?
1条答案
按热度按时间f8rj6qna1#
不能像以前那样声明StyleSheet函数。
或者,您可以声明一个JS函数,根据您传递的参数传递具有不同颜色的相同样式。
您可以按如下方式执行此操作: