From 94d3802e95d19d02e5688f50aebe7f99e0dfa46c Mon Sep 17 00:00:00 2001 From: balint1414 Date: Mon, 15 Sep 2025 18:50:01 +0200 Subject: [PATCH] =?UTF-8?q?T=C3=B6bb=20inform=C3=A1ci=C3=B3=20a=20be=C3=AD?= =?UTF-8?q?rt=20jegyekn=C3=A9l?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../lib/helpers/ui/common_bottom_sheets.dart | 21 ++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/firka/lib/helpers/ui/common_bottom_sheets.dart b/firka/lib/helpers/ui/common_bottom_sheets.dart index f169d32..935da57 100644 --- a/firka/lib/helpers/ui/common_bottom_sheets.dart +++ b/firka/lib/helpers/ui/common_bottom_sheets.dart @@ -259,10 +259,25 @@ Future showGradeBottomSheet( placeholderMode: true, ), FirkaCard(left: [ - Text( - "${data.l10n.tt_added}${grade.creationDate}", - style: appStyle.fonts.B_14R + Column( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text( + "${data.l10n.tt_added}${grade.creationDate}", + style: appStyle.fonts.B_14R .apply(color: appStyle.colors.textPrimary), + ), + Text( + "${data.l10n.grade_teacherName}${grade.teacher}", + style: appStyle.fonts.B_14R + .apply(color: appStyle.colors.textPrimary), + ), + Text( + "${data.l10n.grade_strValue}${grade.strValue}", + style: appStyle.fonts.B_14R + .apply(color: appStyle.colors.textPrimary), + ) + ] ) ]) ],