mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-31 02:27:08 -04:00 
			
		
		
		
	* chore(dep): update auto_route * chore: rebase main --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'package:auto_route/auto_route.dart';
 | |
| import 'package:easy_localization/easy_localization.dart';
 | |
| import 'package:flutter/material.dart';
 | |
| import 'package:hooks_riverpod/hooks_riverpod.dart';
 | |
| import 'package:immich_mobile/modules/archive/providers/archive_asset_provider.dart';
 | |
| import 'package:immich_mobile/modules/home/providers/multiselect.provider.dart';
 | |
| import 'package:immich_mobile/shared/ui/asset_grid/multiselect_grid.dart';
 | |
| 
 | |
| @RoutePage()
 | |
| class ArchivePage extends HookConsumerWidget {
 | |
|   const ArchivePage({super.key});
 | |
| 
 | |
|   @override
 | |
|   Widget build(BuildContext context, WidgetRef ref) {
 | |
|     AppBar buildAppBar() {
 | |
|       final archivedAssets = ref.watch(archiveProvider);
 | |
|       final count = archivedAssets.value?.totalAssets.toString() ?? "?";
 | |
|       return AppBar(
 | |
|         leading: IconButton(
 | |
|           onPressed: () => context.popRoute(),
 | |
|           icon: const Icon(Icons.arrow_back_ios_rounded),
 | |
|         ),
 | |
|         centerTitle: true,
 | |
|         automaticallyImplyLeading: false,
 | |
|         title: const Text(
 | |
|           'archive_page_title',
 | |
|         ).tr(args: [count]),
 | |
|       );
 | |
|     }
 | |
| 
 | |
|     return Scaffold(
 | |
|       appBar: ref.watch(multiselectProvider) ? null : buildAppBar(),
 | |
|       body: MultiselectGrid(
 | |
|         renderListProvider: archiveProvider,
 | |
|         unarchive: true,
 | |
|         archiveEnabled: true,
 | |
|         deleteEnabled: true,
 | |
|         editEnabled: true,
 | |
|       ),
 | |
|     );
 | |
|   }
 | |
| }
 |