8
我試圖爲具有默認樣式的React-Native應用程序創建一些可重用的UI組件。如何將樣式傳遞給React-Native中的容器組件
一個例子默認MyText
(橙色,14,黑體):
import React, { Component, StyleSheet, Text } from 'react-native';
const styles = StyleSheet.create({text: {color: 'orange', fontSize: 14, fontWeight: 'bold'}});
export default class MyText extends Component {
render() {
return <Text style={styles.text}>{this.props.children}</Text>
}
}
如何我想使用它:
import Text from '../ui/myText';
...
<Text style={{color: 'black'}}>My custom styled text, but in black instead of orange</Text>
...
有沒有辦法做到這一點?很明顯,如果我嘗試訪問this.props.style
它只是返回編譯樣式表的ID。