From 3b09d072f0c42672617432a355b77439e49d30e4 Mon Sep 17 00:00:00 2001 From: checkedear <271323618+checkedear@users.noreply.github.com> Date: Fri, 27 Mar 2026 20:15:01 +0100 Subject: [PATCH] feat: added 400% to the calculator --- firka/lib/ui/components/common_bottom_sheets.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firka/lib/ui/components/common_bottom_sheets.dart b/firka/lib/ui/components/common_bottom_sheets.dart index 41c12b2..16d4761 100644 --- a/firka/lib/ui/components/common_bottom_sheets.dart +++ b/firka/lib/ui/components/common_bottom_sheets.dart @@ -1053,7 +1053,7 @@ class _GradeCalculatorSheetContentState int weightIndex = 1; // 0-based index into _snapPoints final List<(int grade, int weight)> entries = []; - static const _snapPoints = [50, 100, 200, 300, 500]; + static const _snapPoints = [50, 100, 200, 300, 400, 500]; int get weightPercent => _snapPoints[weightIndex];