From f441caebf70b2717452494db0363219a97b0b6bd Mon Sep 17 00:00:00 2001 From: Hyperling Date: Fri, 21 Mar 2025 10:34:25 -0700 Subject: [PATCH] Unimplemented got thrown for null. Add it to the list so that lists with no items still work properly. --- lib/pages/report.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/pages/report.dart b/lib/pages/report.dart index 079508c..2f2298c 100644 --- a/lib/pages/report.dart +++ b/lib/pages/report.dart @@ -153,6 +153,9 @@ class SummaryCardForTotals extends StatelessWidget { /* Load page variables based on calculated totals. */ switch (itemType) { + case null: + break; + case ItemType.asset: _assetTotal = monthlyTotal; break;