mirror of
https://github.com/immich-app/immich.git
synced 2025-12-18 01:11:07 +03:00
15 lines
422 B
Dart
15 lines
422 B
Dart
|
|
import 'package:flutter/material.dart';
|
||
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
||
|
|
import 'package:immich_mobile/modules/login/ui/change_password_form.dart';
|
||
|
|
|
||
|
|
class ChangePasswordPage extends HookConsumerWidget {
|
||
|
|
const ChangePasswordPage({Key? key}) : super(key: key);
|
||
|
|
|
||
|
|
@override
|
||
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
||
|
|
return const Scaffold(
|
||
|
|
body: ChangePasswordForm(),
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|