mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-03 19:29:32 -05:00 
			
		
		
		
	* Use new search API and GridView for Places / Locations * Fixes search service by adding clip: true * Rebased from master, uses view all explore grid now * localized view all button * adds empty * style text * Fix issue with horizontal Things not render due to missing height info --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
		
			
				
	
	
		
			16 lines
		
	
	
		
			372 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			372 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
/// A wrapper for [CuratedLocationsResponseDto] objects
 | 
						|
/// and [CuratedObjectsResponseDto] to be displayed in 
 | 
						|
/// a view
 | 
						|
class CuratedContent {
 | 
						|
  /// The label to show associated with this curated object
 | 
						|
  final String label;
 | 
						|
 | 
						|
  /// The id to lookup the asset from the server
 | 
						|
  final String id;
 | 
						|
 | 
						|
  CuratedContent({
 | 
						|
    required this.id,
 | 
						|
    required this.label,
 | 
						|
  });
 | 
						|
}
 |