我想为容器设置 borderRadus 样式。ios上存在兼容性问题,没有圆角。上面的Android可以。
const styles = StyleSheet.create({
dot: {
width: 11,
height: 11,
borderRadius: 11,
backgroundColor: 'rgb(170,170,170)',
marginRight: 5,
}
});
<Text style={styles.dot} />
Ios以正方形显示。 谢谢!
答案 0 :(得分:0)
您可以将View
包裹在Text
元素之外。 View
元素没有此类兼容性问题