我正在尝试在某些文本内为 textview 绘制圆形视图。
它适用于 Android,但是,iOS 无法正常工作。文本出现在视图顶部。
<Text style={styles.na}> NA </Text>
styles
na: {
width: 60,
height: 60,
borderRadius: 60 / 2,
backgroundColor: 'orange',
alignItems: 'center',
textAlign: 'center',
fontWeight: 'bold',
color: 'white',
fontSize: 15,
textAlignVertical: 'center',
marginRight: 10,
overflow: 'hidden',
},
有什么建议么?