From 30f493ddc4c0179e07a86beeff7b307e0ffec1b7 Mon Sep 17 00:00:00 2001 From: balint1414 Date: Tue, 14 Oct 2025 21:07:01 +0200 Subject: [PATCH] =?UTF-8?q?=C3=89rt=C3=A9kel=C3=A9sn=C3=A9l=20tant=C3=A1rg?= =?UTF-8?q?y=20megtekint=C3=A9se=20gomb?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../lib/helpers/ui/common_bottom_sheets.dart | 23 ++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/firka/lib/helpers/ui/common_bottom_sheets.dart b/firka/lib/helpers/ui/common_bottom_sheets.dart index 4fd46b6..f18c969 100644 --- a/firka/lib/helpers/ui/common_bottom_sheets.dart +++ b/firka/lib/helpers/ui/common_bottom_sheets.dart @@ -629,7 +629,28 @@ Future showGradeBottomSheet( color: appStyle.colors.textPrimary), ) ]) - ]) + ]), + SizedBox(height: 8), + SizedBox( + width: MediaQuery.of(context).size.width / 1.1, + child: GestureDetector( + child: FirkaCard( + left: [], + center: [ + Text( + data.l10n.view_subject_btn, + style: appStyle.fonts.B_16R + .apply(color: appStyle.colors.textSecondary), + ) + ], + color: appStyle.colors.buttonSecondaryFill, + ), + onTap: () { + Navigator.pop(context); + pageNavNotifier.value = PageNavData(HomePage.grades, grade.subject.uid, grade.subject.name); + }, + ), + ), ], ), ),