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), + ) + ] ) ]) ],