【发布时间】:2017-01-13 03:49:24
【问题描述】:
执行以下操作:
<Text style={{color: 'blue', fontSize: 30}} />
与以下相比有任何性能影响:
<Text style={styles.blueButton} />
...
const styles = StyleSheet.create({
blueButton: {
color: 'blue',
fontSize: 30,
}
});
【问题讨论】:
标签: reactjs react-native