mirror of
https://github.com/immich-app/immich.git
synced 2025-12-16 09:13:13 +03:00
* dep(mobile): update flutter and deps * chore: dart analyzer * chore: update flutter workflow version * chore: dart format * fix: gallery_viewer PopScope --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
17 lines
463 B
Dart
17 lines
463 B
Dart
import 'package:auto_route/auto_route.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/modules/login/ui/change_password_form.dart';
|
|
|
|
@RoutePage()
|
|
class ChangePasswordPage extends HookConsumerWidget {
|
|
const ChangePasswordPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
return const Scaffold(
|
|
body: ChangePasswordForm(),
|
|
);
|
|
}
|
|
}
|