From 28f8f1d6f85c65ee6acc923f5907cd0c5f6abc39 Mon Sep 17 00:00:00 2001 From: checkedear <271323618+checkedear@users.noreply.github.com> Date: Mon, 8 Jun 2026 21:36:29 +0200 Subject: [PATCH] tmp fix: 50% weight grade style --- firka_common/lib/ui/components/grade.dart | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/firka_common/lib/ui/components/grade.dart b/firka_common/lib/ui/components/grade.dart index 88310de..539579c 100644 --- a/firka_common/lib/ui/components/grade.dart +++ b/firka_common/lib/ui/components/grade.dart @@ -70,19 +70,7 @@ class GradeWidget extends StatelessWidget { color: gradeColor, fontSize: size * 0.75, ); - final text = Text( - value.toString(), - style: weight < 100 - ? textStyle.copyWith( - foreground: Paint() - ..color = gradeColor - ..style = PaintingStyle.stroke - ..strokeJoin = StrokeJoin.round - ..strokeCap = StrokeCap.round - ..strokeWidth = 1.13, - ) - : textStyle, - ); + final text = Text(value.toString(), style: textStyle); if (weight > 100) { final circle_size = size * 0.8;