【发布时间】:2020-01-17 15:44:11
【问题描述】:
假设我们有这样的<View>:
<View>
<Text h4 style={{color: theme.colors.success}}>Heading</Text>
<Text>Normal text</Text>
<Text style={{color: theme.colors.warning}}>Warning text</Text>
</View>
我需要<View> 的每个孩子都位于该视图的中心。
我尝试将style={{textAlign: 'center'}} 添加到父<View>,但它不起作用。
如何做到不手动给每个子组件添加style={{textAlign: 'center'}}?
【问题讨论】:
-
你在
View中试过alignItems和justifyContent吗?
标签: reactjs react-native styles