mirror of
https://github.com/immich-app/immich.git
synced 2024-11-28 09:33:27 +02:00
c1253663b7
* refactor(mobile): services and provider * providers
14 lines
404 B
Dart
14 lines
404 B
Dart
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/entities/asset.entity.dart';
|
|
import 'package:immich_mobile/providers/db.provider.dart';
|
|
import 'package:isar/isar.dart';
|
|
|
|
final allMotionPhotosProvider = FutureProvider<List<Asset>>((ref) async {
|
|
return ref
|
|
.watch(dbProvider)
|
|
.assets
|
|
.filter()
|
|
.livePhotoVideoIdIsNotNull()
|
|
.findAll();
|
|
});
|