aves_mio1/lib/remote/remote_gallery_bridge.dart
FabioMich66 084fa184da
Some checks failed
Quality check / Flutter analysis (push) Has been cancelled
Quality check / CodeQL analysis (java-kotlin) (push) Has been cancelled
ok con video e foto in galleria aves
2026-03-17 12:19:38 +01:00

10 lines
361 B
Dart

// lib/remote/remote_gallery_bridge.dart
import 'package:aves/services/common/services.dart';
import 'package:aves/model/entry/entry.dart';
class RemoteGalleryBridge {
static Future<Set<AvesEntry>> loadRemoteEntries() async {
final allRemotes = await localMediaDb.loadEntries(origin: 1);
return allRemotes.where((e) => e.trashed == 0).toSet();
}
}