I'm new to React and React Native. At the moment for each component I'm breaking the code into 2 separate files:
index.js
for all the React code, and;styles.js
for the StyleSheet
Is there a way to pass props into the external StyleSheet?
Example:
index.js
:
render() {
const iconColor = this.props.color || '#000';
const iconSize = this.props.size || 25;
return (
<Icon style={styles.icon} />
);
}
Example styles.js
:
const styles = StyleSheet.create({
icon : {
color: iconColor,
fontSize: iconSize
}
});
The code above does not work, but it's more there just to get the point across of what I'm trying to do. Any help is much appreciated!
I rather to have my styles in a separate file styles.js. Inside styles.js:
Inside your main class you can pass the value
Alternatively you can those value directly so it would be
and inside your main class
Create a class that takes iconColor and iconSize as arguments and returns a StyleSheet object