import 'package:flutter/material.dart'; import 'package:flutter_riverpod/flutter_riverpod.dart'; import '../../../l10n/app_localizations.dart'; class ChangePasswordPage extends ConsumerStatefulWidget { const ChangePasswordPage({super.key}); @override ConsumerState createState() => _ChangePasswordPageState(); } class _ChangePasswordPageState extends ConsumerState with SingleTickerProviderStateMixin { @override Widget build(BuildContext context) { final l10n = AppLocalizations.of(context)!; return Scaffold( appBar: AppBar( title: Text(l10n.changePassword), elevation: 0, ), body: ListView.builder( itemCount: 5, itemBuilder: (BuildContext context, int index) { return const SizedBox.shrink(); }), ); } }