mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-03 19:17:11 -05:00 
			
		
		
		
	* refactor(mobile): trash provider * refactor(mobile): trash provider * pr feedback * archive timeline * favorite * album * trash timeline * all videos timeline * refactor * refactor: home timeline and partner timeline * update analysis option
		
			
				
	
	
		
			40 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.2 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/providers/multiselect.provider.dart';
 | 
						|
import 'package:immich_mobile/providers/timeline.provider.dart';
 | 
						|
import 'package:immich_mobile/widgets/asset_grid/multiselect_grid.dart';
 | 
						|
 | 
						|
@RoutePage()
 | 
						|
class FavoritesPage extends HookConsumerWidget {
 | 
						|
  const FavoritesPage({super.key});
 | 
						|
 | 
						|
  @override
 | 
						|
  Widget build(BuildContext context, WidgetRef ref) {
 | 
						|
    AppBar buildAppBar() {
 | 
						|
      return AppBar(
 | 
						|
        leading: IconButton(
 | 
						|
          onPressed: () => context.maybePop(),
 | 
						|
          icon: const Icon(Icons.arrow_back_ios_rounded),
 | 
						|
        ),
 | 
						|
        centerTitle: true,
 | 
						|
        automaticallyImplyLeading: false,
 | 
						|
        title: const Text(
 | 
						|
          'favorites_page_title',
 | 
						|
        ).tr(),
 | 
						|
      );
 | 
						|
    }
 | 
						|
 | 
						|
    return Scaffold(
 | 
						|
      appBar: ref.watch(multiselectProvider) ? null : buildAppBar(),
 | 
						|
      body: MultiselectGrid(
 | 
						|
        renderListProvider: favoriteTimelineProvider,
 | 
						|
        favoriteEnabled: true,
 | 
						|
        editEnabled: true,
 | 
						|
        unfavorite: true,
 | 
						|
      ),
 | 
						|
    );
 | 
						|
  }
 | 
						|
}
 |