Files
feature-next-arch/lib/features/auth/presentation/pages/change_password_page.dart
2026-01-18 20:21:14 +08:00

14 lines
332 B
Dart

import 'package:flutter/material.dart';
class ChangePasswordPage extends StatelessWidget {
const ChangePasswordPage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: const Text('ChangePwd')),
body: Center(child: Text('Welcome ChangePwd page')),
);
}
}