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')), ); } }