实际上我正在阅读这篇文章。我对 startAngle 的工作和 drawArc() 中的弧线方向感到非常困惑,有人能解释一下吗?
我已经阅读了很多答案,我浪费了大约 2 到 3 个小时来尝试理解这个功能。
在下面的代码中为什么半圆在左侧。因为两个角度都是正的所以它应该在右侧?
Preview(showBackground = true)
@Composable
fun PreviewAnimatedRectComposable() {
GooglePhotosIcon()
}
@Composable
private fun GooglePhotosIcon() {
Canvas(
modifier = Modifier
.size(100.dp)
.padding(16.dp)
.border(1.dp , Color.Magenta)
) {
drawArc(
color = Color(0xFFf04231),
startAngle = 270f,
sweepAngle = 180f,
useCenter = true,
size = Size(size.width * .50f, size.height * .50f),
topLeft = Offset(size.width * .25f, 0f)
)
}
}