Add symbol for offline available sheets

This commit is contained in:
2026-07-03 17:46:50 +02:00
parent e3ee24e06b
commit baf20e1ca8
5 changed files with 19 additions and 0 deletions
+4
View File
@@ -125,6 +125,10 @@ class _HomePageState extends State<HomePage> with RouteAware {
_sheets = await _sortSheetsByRecency(result.sheets);
_isOnline = result.isOnline;
for (var sheet in _sheets) {
sheet.availableOffline = await _apiClient!.isPdfFileCached(sheet.uuid);
}
return result;
}