added support for simultan downloads in files and talk, support for background downloads, enhanced loading in files with retry

This commit is contained in:
2026-07-06 15:43:17 +02:00
parent 614ab159af
commit 124b1a5177
34 changed files with 1866 additions and 409 deletions
@@ -14,6 +14,9 @@ abstract class LoadableState<TState> with _$LoadableState<TState> {
required int? lastFetch,
required void Function()? reFetch,
required LoadingError? error,
// Transient progress note under the primary loading spinner (e.g. retry
// progress). Lives only within one fetch cycle — never persisted.
String? statusText,
}) = _LoadableState<TState>;
bool _hasError() => error != null;