我是React和React Native的新手.目前,对于每个组件,我将代码分成两个单独的文件:
index.js 对于所有React代码,和;styles.js 对于StyleSheet有没有办法将道具传递到外部StyleSheet?
示例
index.js::
render() {
const iconColor = this.props.color || '#000';
const iconSize = this.props.size || 25;
return (
<Icon style={styles.icon} />
);
}Run Code Online (Sandbox Code Playgroud)
示例styles.js:
const styles = StyleSheet.create({
icon : {
color: iconColor,
fontSize: iconSize
}
});Run Code Online (Sandbox Code Playgroud)
上面的代码不起作用,但更重要的是要了解我正在尝试做的事情.任何帮助深表感谢!