forked from firka/firka
- 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
10 lines
187 B
Dart
10 lines
187 B
Dart
List<T> listToTyped<T>(List<dynamic> dynamicList) {
|
|
var newList = List<T>.empty(growable: true);
|
|
|
|
for (var item in dynamicList) {
|
|
newList.add(item as T);
|
|
}
|
|
|
|
return newList;
|
|
}
|