mirror of
https://github.com/immich-app/immich.git
synced 2025-01-04 02:46:47 +01:00
6c008176c9
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>
36 lines
1.1 KiB
Dart
36 lines
1.1 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/extensions/asyncvalue_extensions.dart';
|
|
import 'package:immich_mobile/models/search/search_curated_content.model.dart';
|
|
import 'package:immich_mobile/providers/search/search_page_state.provider.dart';
|
|
import 'package:immich_mobile/widgets/search/explore_grid.dart';
|
|
|
|
@RoutePage()
|
|
class AllPlacesPage extends HookConsumerWidget {
|
|
const AllPlacesPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
AsyncValue<List<SearchCuratedContent>> places =
|
|
ref.watch(getAllPlacesProvider);
|
|
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: const Text(
|
|
'curated_location_page_title',
|
|
).tr(),
|
|
leading: IconButton(
|
|
onPressed: () => context.maybePop(),
|
|
icon: const Icon(Icons.arrow_back_ios_rounded),
|
|
),
|
|
),
|
|
body: places.widgetWhen(
|
|
onData: (data) => ExploreGrid(
|
|
curatedContent: data,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|