2024-01-15 16:50:33 +00:00
|
|
|
import 'package:auto_route/auto_route.dart';
|
2022-06-27 15:13:07 -05:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
|
|
|
import 'package:immich_mobile/modules/login/ui/change_password_form.dart';
|
|
|
|
|
|
2024-01-15 16:50:33 +00:00
|
|
|
@RoutePage()
|
2022-06-27 15:13:07 -05:00
|
|
|
class ChangePasswordPage extends HookConsumerWidget {
|
|
|
|
|
const ChangePasswordPage({Key? key}) : super(key: key);
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
|
|
|
return const Scaffold(
|
|
|
|
|
body: ChangePasswordForm(),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|