From 946a2ffe5a56eeedcbe1805e86da6eecd3e464aa Mon Sep 17 00:00:00 2001 From: easyhz Date: Thu, 12 Sep 2024 20:34:03 +0900 Subject: [PATCH] =?UTF-8?q?:wrench:=20fix:=20=EB=8F=84=EB=84=9B=20?= =?UTF-8?q?=EC=B0=A8=ED=8A=B8=20=EA=B8=80=EC=9E=90=20=EC=8A=A4=ED=83=80?= =?UTF-8?q?=EC=9D=BC=20=EC=88=98=EC=A0=95=20(#18)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/afs/tutrd/component/chart/DonutChart.kt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app/src/main/java/com/afs/tutrd/component/chart/DonutChart.kt b/app/src/main/java/com/afs/tutrd/component/chart/DonutChart.kt index 4749050..a68d0be 100644 --- a/app/src/main/java/com/afs/tutrd/component/chart/DonutChart.kt +++ b/app/src/main/java/com/afs/tutrd/component/chart/DonutChart.kt @@ -24,6 +24,7 @@ import androidx.compose.ui.tooling.preview.Preview import androidx.compose.ui.unit.Dp import androidx.compose.ui.unit.dp import com.afs.tutrd.theme.LightGray +import com.afs.tutrd.theme.MediumTitle2 import com.afs.tutrd.theme.Tutrd @Composable @@ -75,7 +76,11 @@ fun DonutChart( style = Stroke(width = width.toPx(), cap = StrokeCap.Butt) ) } - Text(text = "${progress}/$total") + Text( + text = "${progress}/$total", + style = MediumTitle2, + color = Color.Black + ) } }