1
0
forked from firka/firka

#77 Óra témája hibás tördelése fix

This commit is contained in:
2025-10-02 20:09:44 +02:00
committed by Armand
parent 569147ae8a
commit 8881f8c674

View File

@@ -161,11 +161,16 @@ Future<void> showLessonBottomSheet(
.apply(color: appStyle.colors.textPrimary),
),
SizedBox(height: 4),
Text(
lesson.theme ?? 'N/A',
style: appStyle.fonts.B_16R
SizedBox(
width: MediaQuery.of(context).size.width * 0.7,
child: Text(
lesson.theme ?? 'N/A',
style: appStyle.fonts.B_16R
.apply(color: appStyle.colors.textPrimary),
),
maxLines: 3,
overflow: TextOverflow.ellipsis,
),
),
SizedBox(height: 4),
statsForNerds
],