【发布时间】:2020-02-23 22:14:07
【问题描述】:
【问题讨论】:
标签: reactjs react-native user-interface expo stylesheet
【问题讨论】:
标签: reactjs react-native user-interface expo stylesheet
您可以根据需要更新值。
<View>
<View
style={{
width: 120,
padding: 10,
paddingLeft: 20,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: 'red',
height: 40,
borderTopRightRadius: 3,
borderBottomRightRadius: 3,
}}>
<Text style={{color: '#FFF', fontWeight: 'bold'}}>Overview</Text>
</View>
<View
style={{
width: 0,
height: 0,
backgroundColor: 'transparent',
borderStyle: 'solid',
borderRightWidth: 20,
borderTopWidth: 20,
borderRightColor: 'transparent',
borderTopColor: 'red',
transform: [{rotate: '90deg'}],
}}
/>
</View>
【讨论】: