From dd59381b35b24b6c1c44bb8bcc8a4518870b7482 Mon Sep 17 00:00:00 2001 From: Armand <4831c0@proton.me> Date: Wed, 10 Sep 2025 09:41:13 +0200 Subject: [PATCH] tt: increase padding when there is a test --- firka/lib/ui/phone/widgets/lesson.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firka/lib/ui/phone/widgets/lesson.dart b/firka/lib/ui/phone/widgets/lesson.dart index 832ca96..839a9b6 100644 --- a/firka/lib/ui/phone/widgets/lesson.dart +++ b/firka/lib/ui/phone/widgets/lesson.dart @@ -109,7 +109,7 @@ class LessonWidget extends StatelessWidget { ]), ), ), - SizedBox(width: 8), + SizedBox(width: !showTests && test != null ? 16 : 8), Text(lesson.subject?.name ?? "N/A", style: appStyle.fonts.B_16SB .apply(color: appStyle.colors.textPrimary)),