mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-31 10:37:11 -04:00 
			
		
		
		
	* chore: bump dart sdk to 3.8 * chore: make build * make pigeon * chore: format files --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
		
			
				
	
	
		
			30 lines
		
	
	
		
			997 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			997 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'package:auto_route/auto_route.dart';
 | |
| import 'package:flutter/material.dart';
 | |
| import 'package:hooks_riverpod/hooks_riverpod.dart';
 | |
| import 'package:immich_mobile/presentation/widgets/timeline/timeline.widget.dart';
 | |
| import 'package:immich_mobile/providers/infrastructure/timeline.provider.dart';
 | |
| import 'package:immich_mobile/widgets/common/mesmerizing_sliver_app_bar.dart';
 | |
| 
 | |
| @RoutePage()
 | |
| class DriftPlaceDetailPage extends StatelessWidget {
 | |
|   final String place;
 | |
| 
 | |
|   const DriftPlaceDetailPage({super.key, required this.place});
 | |
| 
 | |
|   @override
 | |
|   Widget build(BuildContext context) {
 | |
|     return ProviderScope(
 | |
|       overrides: [
 | |
|         timelineServiceProvider.overrideWith((ref) {
 | |
|           final timelineService = ref.watch(timelineFactoryProvider).place(place);
 | |
|           ref.onDispose(timelineService.dispose);
 | |
|           return timelineService;
 | |
|         }),
 | |
|       ],
 | |
|       child: Timeline(
 | |
|         appBar: MesmerizingSliverAppBar(title: place, icon: Icons.location_on),
 | |
|       ),
 | |
|     );
 | |
|   }
 | |
| }
 |