mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-31 02:39:03 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			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();
 | |
| });
 |