我正在尝试在React Native中使用SVG绘制一个圆形图。我想在图表上加一笔。我该怎么做?
是我干的
这就是我想做的。
验证码:
return (
<View style={{ height: 250, width: 250, backgroundColor: "green" }}>
<Svg viewBox="0 0 120 120">
<Circle
cx="60"
cy="60"
r="30"
fill="transparent"
stroke="red"
strokeWidth="60"
strokeDasharray={(2 * Math.PI * 30 * 75) / 100}
/>
</Svg>
</View>
);
1条答案
按热度按时间46qrfjad1#
对于添加笔划,我建议使用另一个圆圈。
请让我知道,如果这个Answear帮助你。:—)