mirror of
https://github.com/immich-app/immich.git
synced 2024-12-19 00:32:49 +02:00
acf099e481
* chore: added overpass font * Setting page * style: app bar dialog * style: backup controller and album selection page * style: asset grid * blanket fix * blanket fix * remove description input for local only asset * revert * merge main * style: search page * sharing page * text size in sharing page * style: library page * library page * album page + album creation page * Navigationbar * style: minor * update * album bottom sheet * album option page * minor style fix * remove unused fonts * remove fonts in pubspec
39 lines
1.2 KiB
Dart
39 lines
1.2 KiB
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/build_context_extensions.dart';
|
|
import 'package:immich_mobile/modules/search/providers/people.provider.dart';
|
|
import 'package:immich_mobile/modules/search/ui/explore_grid.dart';
|
|
import 'package:immich_mobile/shared/ui/immich_loading_indicator.dart';
|
|
|
|
class AllPeoplePage extends HookConsumerWidget {
|
|
const AllPeoplePage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
final curatedPeople = ref.watch(getCuratedPeopleProvider);
|
|
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: const Text(
|
|
'all_people_page_title',
|
|
).tr(),
|
|
leading: IconButton(
|
|
onPressed: () => context.autoPop(),
|
|
icon: const Icon(Icons.arrow_back_ios_rounded),
|
|
),
|
|
),
|
|
body: curatedPeople.when(
|
|
loading: () => const Center(child: ImmichLoadingIndicator()),
|
|
error: (err, stack) => Center(
|
|
child: Text('Error: $err'),
|
|
),
|
|
data: (people) => ExploreGrid(
|
|
isPeople: true,
|
|
curatedContent: people,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|