Files
firka/firka_common/lib/firka_common.dart
Armand 32936c2aa5 firka: extract firka_common package with shared widgets (Isar kept separate)
- Create firka_common package with core helpers (debug, json, icon), theme,
  and shared widgets (FirkaCard, FirkaShadow, GradeWidget, GradeSmallCard,
  ClassIconWidget, FirkaIconWidget, DelayedSpinnerWidget, CounterDigitWidget)
- Keep Isar models (GenericCacheModel, TimetableCacheModel, HomeworkCacheModel,
  DatedCacheEntry, util) in firka and firka_wear - not moved to firka_common
- Update firka and firka_wear to depend on firka_common for shared UI only
- Add configurable roundGrade thresholds for firka settings
- Add package param to FirkaIconWidget for app asset paths
2026-03-03 15:33:11 +01:00

17 lines
535 B
Dart

library firka_common;
export 'core/debug_helper.dart';
export 'core/extensions.dart';
export 'core/icon_helper.dart';
export 'core/json_helper.dart';
export 'ui/components/firka_card.dart';
export 'ui/components/firka_shadow.dart';
export 'ui/components/grade.dart';
export 'ui/components/grade_helpers.dart';
export 'ui/shared/class_icon.dart';
export 'ui/shared/counter_digit.dart';
export 'ui/shared/delayed_spinner.dart';
export 'ui/shared/firka_icon.dart';
export 'ui/shared/grade_small_card.dart';
export 'ui/theme/style.dart';