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だけが返されます。