mirror of
https://github.com/immich-app/immich.git
synced 2025-06-27 21:40:03 +02:00
16 lines
460 B
Dart
16 lines
460 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/widgets/forms/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(),
|
|
);
|
|
}
|
|
}
|