tmp fix: 50% weight grade style

This commit is contained in:
checkedear
2026-06-08 21:36:29 +02:00
parent d51c9d6411
commit 28f8f1d6f8

View File

@@ -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;