react-native StyleSheet borderRadus兼容性

时间:2019-01-28 07:36:54

标签: react-native

我想为容器设置 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以正方形显示。 谢谢!

1 个答案:

答案 0 :(得分:0)

您可以将View包裹在Text元素之外。 View元素没有此类兼容性问题