mirror of
https://github.com/immich-app/immich.git
synced 2024-12-20 00:38:24 +02:00
39 lines
1.2 KiB
Dart
39 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/modules/favorite/providers/favorite_provider.dart';
|
|
import 'package:immich_mobile/modules/home/ui/asset_grid/immich_asset_grid.dart';
|
|
|
|
class FavoritesPage extends HookConsumerWidget {
|
|
const FavoritesPage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
AppBar buildAppBar() {
|
|
return AppBar(
|
|
leading: IconButton(
|
|
onPressed: () => AutoRouter.of(context).pop(),
|
|
icon: const Icon(Icons.arrow_back_ios_rounded),
|
|
),
|
|
centerTitle: true,
|
|
automaticallyImplyLeading: false,
|
|
title: const Text(
|
|
'favorites_page_title',
|
|
).tr(),
|
|
);
|
|
}
|
|
|
|
return Scaffold(
|
|
appBar: buildAppBar(),
|
|
body: ref.watch(favoriteAssetProvider).isEmpty
|
|
? const Center(
|
|
child: Text('No favorite assets found.'),
|
|
)
|
|
: ImmichAssetGrid(
|
|
assets: ref.watch(favoriteAssetProvider),
|
|
),
|
|
);
|
|
}
|
|
}
|