在React Native中,我经常遇到以下情况,我想在其中设置View
及其包含的Text
的样式。
是否有更好的方法可以做到这一点,例如不必手动为style
分配一个单独的Text
并使用它是View
的子级的事实,就像在CSS中那样?另外,有没有像SCSS一样嵌套的方法?
标记:
<View style={ styles.postContent }>
<Text style={ styles.postContentText }>
{ post.postContent }
</Text>
</View>
样式:
const styles = StyleSheet.create({
postContent: {
backgroundColor: '#eeeaea',
padding: 24,
},
postContentText: {
color: '#666',
}
});