mirror of
https://github.com/immich-app/immich.git
synced 2024-12-19 00:32:49 +02:00
36 lines
1.2 KiB
Dart
36 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/home/ui/asset_grid/immich_asset_grid.dart';
|
||
|
import 'package:immich_mobile/modules/search/providers/recently_added.provider.dart';
|
||
|
import 'package:immich_mobile/shared/ui/immich_loading_indicator.dart';
|
||
|
|
||
|
class RecentlyAddedPage extends HookConsumerWidget {
|
||
|
const RecentlyAddedPage({super.key});
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context, WidgetRef ref) {
|
||
|
final recents = ref.watch(recentlyAddedProvider);
|
||
|
|
||
|
return Scaffold(
|
||
|
appBar: AppBar(
|
||
|
title: const Text('recently_added_page_title').tr(),
|
||
|
leading: IconButton(
|
||
|
onPressed: () => AutoRouter.of(context).pop(),
|
||
|
icon: const Icon(Icons.arrow_back_ios_rounded),
|
||
|
),
|
||
|
),
|
||
|
body: recents.when(
|
||
|
data: (searchResponse) => ImmichAssetGrid(
|
||
|
assets: searchResponse,
|
||
|
),
|
||
|
error: (e, s) => Text(e.toString()),
|
||
|
loading: () => const Center(
|
||
|
child: ImmichLoadingIndicator(),
|
||
|
),
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
}
|