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