mirror of
https://github.com/immich-app/immich.git
synced 2024-12-17 12:22:31 +02:00
ba5cca9348
* chore(dep): update auto_route * chore: rebase main --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
26 lines
866 B
Dart
26 lines
866 B
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/search/providers/all_video_assets.provider.dart';
|
|
import 'package:immich_mobile/shared/ui/asset_grid/multiselect_grid.dart';
|
|
|
|
@RoutePage()
|
|
class AllVideosPage extends HookConsumerWidget {
|
|
const AllVideosPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: const Text('all_videos_page_title').tr(),
|
|
leading: IconButton(
|
|
onPressed: () => context.popRoute(),
|
|
icon: const Icon(Icons.arrow_back_ios_rounded),
|
|
),
|
|
),
|
|
body: MultiselectGrid(renderListProvider: allVideoAssetsProvider),
|
|
);
|
|
}
|
|
}
|