mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-31 10:49:11 -04:00 
			
		
		
		
	deps: update dependency auto_route to v8 Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com> Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
| // ignore_for_file: require_trailing_commas
 | |
| 
 | |
| import 'package:auto_route/auto_route.dart';
 | |
| import 'package:easy_localization/easy_localization.dart';
 | |
| import 'package:flutter/material.dart';
 | |
| import 'package:immich_mobile/models/memories/memory.model.dart';
 | |
| import 'package:immich_mobile/providers/asset_viewer/scroll_to_date_notifier.provider.dart';
 | |
| 
 | |
| class MemoryBottomInfo extends StatelessWidget {
 | |
|   final Memory memory;
 | |
| 
 | |
|   const MemoryBottomInfo({super.key, required this.memory});
 | |
| 
 | |
|   @override
 | |
|   Widget build(BuildContext context) {
 | |
|     final df = DateFormat.yMMMMd();
 | |
|     return Padding(
 | |
|       padding: const EdgeInsets.all(16.0),
 | |
|       child: Row(mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [
 | |
|         Column(
 | |
|           crossAxisAlignment: CrossAxisAlignment.start,
 | |
|           children: [
 | |
|             Text(
 | |
|               memory.title,
 | |
|               style: TextStyle(
 | |
|                 color: Colors.grey[400],
 | |
|                 fontSize: 13.0,
 | |
|                 fontWeight: FontWeight.w500,
 | |
|               ),
 | |
|             ),
 | |
|             Text(
 | |
|               df.format(
 | |
|                 memory.assets[0].fileCreatedAt,
 | |
|               ),
 | |
|               style: const TextStyle(
 | |
|                 color: Colors.white,
 | |
|                 fontSize: 15.0,
 | |
|                 fontWeight: FontWeight.w500,
 | |
|               ),
 | |
|             ),
 | |
|           ],
 | |
|         ),
 | |
|         MaterialButton(
 | |
|           minWidth: 0,
 | |
|           onPressed: () {
 | |
|             context.maybePop();
 | |
|             scrollToDateNotifierProvider
 | |
|                 .scrollToDate(memory.assets[0].fileCreatedAt);
 | |
|           },
 | |
|           shape: const CircleBorder(),
 | |
|           color: Colors.white.withOpacity(0.2),
 | |
|           elevation: 0,
 | |
|           child: const Icon(
 | |
|             Icons.open_in_new,
 | |
|             color: Colors.white,
 | |
|           ),
 | |
|         ),
 | |
|       ]),
 | |
|     );
 | |
|   }
 | |
| }
 |