mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
* chore(dep): update auto_route * chore: rebase main --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
16 lines
480 B
Dart
16 lines
480 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({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
return const Scaffold(
|
|
body: ChangePasswordForm(),
|
|
);
|
|
}
|
|
}
|