feat(01-09): enhance auth components with loading states and error display
AuthForm enhancements: - Add form-wide error display with dismiss functionality - Add field-specific error styling with icons - Auto-clear errors when user starts typing - Enhanced accessibility with semantic announcements - Better error positioning and visual hierarchy AuthButton enhancements: - Convert to StatefulWidget with animation support - Add success state with visual feedback - Enhanced loading states with custom text - Double-tap prevention for better UX - Haptic feedback on button press - Comprehensive accessibility labels and hints - Smooth visual transitions between states - Better disabled state handling
This commit is contained in:
@@ -1,77 +1,282 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter/semantics.dart';
|
||||||
|
import 'package:flutter/services.dart';
|
||||||
|
|
||||||
/// Custom authentication button with loading states and variants
|
/// Custom authentication button with loading states and variants
|
||||||
class AuthButton extends StatelessWidget {
|
class AuthButton extends StatefulWidget {
|
||||||
final String text;
|
final String text;
|
||||||
final VoidCallback? onPressed;
|
final VoidCallback? onPressed;
|
||||||
final bool isLoading;
|
final bool isLoading;
|
||||||
|
final bool isSuccess;
|
||||||
|
final String? loadingText;
|
||||||
|
final String? successText;
|
||||||
final AuthButtonVariant variant;
|
final AuthButtonVariant variant;
|
||||||
final bool fullWidth;
|
final bool fullWidth;
|
||||||
final Widget? icon;
|
final Widget? icon;
|
||||||
|
final Duration successDuration;
|
||||||
|
|
||||||
const AuthButton({
|
const AuthButton({
|
||||||
super.key,
|
super.key,
|
||||||
required this.text,
|
required this.text,
|
||||||
this.onPressed,
|
this.onPressed,
|
||||||
this.isLoading = false,
|
this.isLoading = false,
|
||||||
|
this.isSuccess = false,
|
||||||
|
this.loadingText,
|
||||||
|
this.successText,
|
||||||
this.variant = AuthButtonVariant.primary,
|
this.variant = AuthButtonVariant.primary,
|
||||||
this.fullWidth = true,
|
this.fullWidth = true,
|
||||||
this.icon,
|
this.icon,
|
||||||
|
this.successDuration = const Duration(seconds: 2),
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@override
|
||||||
|
State<AuthButton> createState() => _AuthButtonState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _AuthButtonState extends State<AuthButton>
|
||||||
|
with SingleTickerProviderStateMixin {
|
||||||
|
late AnimationController _animationController;
|
||||||
|
late Animation<double> _scaleAnimation;
|
||||||
|
late Animation<double> _opacityAnimation;
|
||||||
|
bool _isPressed = false;
|
||||||
|
DateTime? _lastPressedTime;
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
super.initState();
|
||||||
|
_animationController = AnimationController(
|
||||||
|
duration: const Duration(milliseconds: 200),
|
||||||
|
vsync: this,
|
||||||
|
);
|
||||||
|
_scaleAnimation = Tween<double>(
|
||||||
|
begin: 1.0,
|
||||||
|
end: 0.95,
|
||||||
|
).animate(CurvedAnimation(
|
||||||
|
parent: _animationController,
|
||||||
|
curve: Curves.easeInOut,
|
||||||
|
));
|
||||||
|
_opacityAnimation = Tween<double>(
|
||||||
|
begin: 1.0,
|
||||||
|
end: 0.7,
|
||||||
|
).animate(CurvedAnimation(
|
||||||
|
parent: _animationController,
|
||||||
|
curve: Curves.easeInOut,
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void dispose() {
|
||||||
|
_animationController.dispose();
|
||||||
|
super.dispose();
|
||||||
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
final theme = Theme.of(context);
|
final theme = Theme.of(context);
|
||||||
final colors = _getColors(theme);
|
final colors = _getColors(theme);
|
||||||
|
final isDisabled = widget.isLoading || widget.onPressed == null;
|
||||||
|
final displayText = _getDisplayText();
|
||||||
|
final displayIcon = _getDisplayIcon();
|
||||||
|
|
||||||
return SizedBox(
|
return AnimatedBuilder(
|
||||||
width: fullWidth ? double.infinity : null,
|
animation: _animationController,
|
||||||
height: 48,
|
builder: (context, child) {
|
||||||
child: ElevatedButton(
|
return Transform.scale(
|
||||||
onPressed: isLoading ? null : onPressed,
|
scale: _scaleAnimation.value,
|
||||||
style: ElevatedButton.styleFrom(
|
child: Opacity(
|
||||||
backgroundColor: colors.background,
|
opacity: _opacityAnimation.value,
|
||||||
foregroundColor: colors.foreground,
|
child: Semantics(
|
||||||
disabledBackgroundColor: colors.disabledBackground,
|
button: true,
|
||||||
disabledForegroundColor: colors.disabledForeground,
|
label: _getAccessibilityLabel(),
|
||||||
elevation: variant == AuthButtonVariant.primary ? 2 : 0,
|
hint: _getAccessibilityHint(),
|
||||||
shape: RoundedRectangleBorder(
|
child: SizedBox(
|
||||||
borderRadius: BorderRadius.circular(8),
|
width: widget.fullWidth ? double.infinity : null,
|
||||||
side: variant == AuthButtonVariant.outline
|
height: 48,
|
||||||
? BorderSide(color: colors.background)
|
child: ElevatedButton(
|
||||||
: BorderSide.none,
|
onPressed: isDisabled ? null : _handlePressed,
|
||||||
),
|
style: ElevatedButton.styleFrom(
|
||||||
),
|
backgroundColor: _getBackgroundColor(colors),
|
||||||
child: isLoading
|
foregroundColor: _getForegroundColor(colors),
|
||||||
? SizedBox(
|
disabledBackgroundColor: colors.disabledBackground,
|
||||||
height: 20,
|
disabledForegroundColor: colors.disabledForeground,
|
||||||
width: 20,
|
elevation: widget.variant == AuthButtonVariant.primary ? 2 : 0,
|
||||||
child: CircularProgressIndicator(
|
shape: RoundedRectangleBorder(
|
||||||
strokeWidth: 2,
|
borderRadius: BorderRadius.circular(8),
|
||||||
valueColor: AlwaysStoppedAnimation<Color>(colors.foreground),
|
side: widget.variant == AuthButtonVariant.outline
|
||||||
),
|
? BorderSide(color: colors.background)
|
||||||
)
|
: BorderSide.none,
|
||||||
: Row(
|
|
||||||
mainAxisSize: MainAxisSize.min,
|
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
|
||||||
children: [
|
|
||||||
if (icon != null) ...[
|
|
||||||
icon!,
|
|
||||||
const SizedBox(width: 8),
|
|
||||||
],
|
|
||||||
Text(
|
|
||||||
text,
|
|
||||||
style: theme.textTheme.labelLarge?.copyWith(
|
|
||||||
fontWeight: FontWeight.w600,
|
|
||||||
color: colors.foreground,
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
child: _buildButtonContent(displayText, displayIcon, colors.foreground, theme),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Widget _buildButtonContent(String text, Widget? icon, Color foregroundColor, ThemeData theme) {
|
||||||
|
if (widget.isLoading) {
|
||||||
|
return Row(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
|
children: [
|
||||||
|
SizedBox(
|
||||||
|
height: 20,
|
||||||
|
width: 20,
|
||||||
|
child: CircularProgressIndicator(
|
||||||
|
strokeWidth: 2,
|
||||||
|
valueColor: AlwaysStoppedAnimation<Color>(foregroundColor),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(width: 12),
|
||||||
|
Text(
|
||||||
|
widget.loadingText ?? 'Loading...',
|
||||||
|
style: theme.textTheme.labelLarge?.copyWith(
|
||||||
|
fontWeight: FontWeight.w600,
|
||||||
|
color: foregroundColor,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (widget.isSuccess) {
|
||||||
|
return Row(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
|
children: [
|
||||||
|
Icon(
|
||||||
|
Icons.check_circle,
|
||||||
|
color: foregroundColor,
|
||||||
|
size: 20,
|
||||||
|
),
|
||||||
|
const SizedBox(width: 8),
|
||||||
|
Text(
|
||||||
|
widget.successText ?? 'Success!',
|
||||||
|
style: theme.textTheme.labelLarge?.copyWith(
|
||||||
|
fontWeight: FontWeight.w600,
|
||||||
|
color: foregroundColor,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return Row(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
|
children: [
|
||||||
|
if (icon != null) ...[
|
||||||
|
icon!,
|
||||||
|
const SizedBox(width: 8),
|
||||||
|
],
|
||||||
|
Text(
|
||||||
|
text,
|
||||||
|
style: theme.textTheme.labelLarge?.copyWith(
|
||||||
|
fontWeight: FontWeight.w600,
|
||||||
|
color: foregroundColor,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
String _getDisplayText() {
|
||||||
|
if (widget.isLoading) {
|
||||||
|
return widget.loadingText ?? 'Loading...';
|
||||||
|
}
|
||||||
|
if (widget.isSuccess) {
|
||||||
|
return widget.successText ?? 'Success!';
|
||||||
|
}
|
||||||
|
return widget.text;
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget? _getDisplayIcon() {
|
||||||
|
if (widget.isLoading || widget.isSuccess) {
|
||||||
|
return null; // Loading spinner or checkmark will be shown
|
||||||
|
}
|
||||||
|
return widget.icon;
|
||||||
|
}
|
||||||
|
|
||||||
|
Color _getBackgroundColor(_ButtonColors colors) {
|
||||||
|
if (widget.isSuccess) {
|
||||||
|
return Theme.of(context).colorScheme.primary;
|
||||||
|
}
|
||||||
|
return colors.background;
|
||||||
|
}
|
||||||
|
|
||||||
|
Color _getForegroundColor(_ButtonColors colors) {
|
||||||
|
if (widget.isSuccess) {
|
||||||
|
return Theme.of(context).colorScheme.onPrimary;
|
||||||
|
}
|
||||||
|
return colors.foreground;
|
||||||
|
}
|
||||||
|
|
||||||
|
String _getAccessibilityLabel() {
|
||||||
|
if (widget.isLoading) {
|
||||||
|
return '${widget.loadingText ?? "Loading"} button';
|
||||||
|
}
|
||||||
|
if (widget.isSuccess) {
|
||||||
|
return '${widget.successText ?? "Success"} completed';
|
||||||
|
}
|
||||||
|
return widget.text;
|
||||||
|
}
|
||||||
|
|
||||||
|
String _getAccessibilityHint() {
|
||||||
|
if (widget.isLoading) {
|
||||||
|
return 'Please wait while operation completes';
|
||||||
|
}
|
||||||
|
if (widget.isSuccess) {
|
||||||
|
return 'Operation completed successfully';
|
||||||
|
}
|
||||||
|
return 'Double tap to ${widget.text.toLowerCase()}';
|
||||||
|
}
|
||||||
|
|
||||||
|
void _handlePressed() async {
|
||||||
|
// Prevent double-tap within 500ms
|
||||||
|
final now = DateTime.now();
|
||||||
|
if (_lastPressedTime != null &&
|
||||||
|
now.difference(_lastPressedTime!).inMilliseconds < 500) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_lastPressedTime = now;
|
||||||
|
|
||||||
|
// Provide haptic feedback if available
|
||||||
|
try {
|
||||||
|
HapticFeedback.lightImpact();
|
||||||
|
} catch (e) {
|
||||||
|
// Haptic feedback not available on all platforms
|
||||||
|
}
|
||||||
|
|
||||||
|
// Animate press
|
||||||
|
_animationController.forward().then((_) {
|
||||||
|
_animationController.reverse();
|
||||||
|
});
|
||||||
|
|
||||||
|
// Announce for accessibility
|
||||||
|
_announceForAccessibility('${widget.text} activated');
|
||||||
|
|
||||||
|
// Execute callback
|
||||||
|
await widget.onPressed?.call();
|
||||||
|
|
||||||
|
// Auto-reset success state after duration
|
||||||
|
if (widget.isSuccess) {
|
||||||
|
Future.delayed(widget.successDuration, () {
|
||||||
|
if (mounted) {
|
||||||
|
// Success state reset should be handled by parent
|
||||||
|
_announceForAccessibility('Success state completed');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void _announceForAccessibility(String message) {
|
||||||
|
SemanticsService.announce(message, TextDirection.ltr);
|
||||||
|
}
|
||||||
|
|
||||||
_ButtonColors _getColors(ThemeData theme) {
|
_ButtonColors _getColors(ThemeData theme) {
|
||||||
switch (variant) {
|
switch (variant) {
|
||||||
case AuthButtonVariant.primary:
|
case AuthButtonVariant.primary:
|
||||||
@@ -105,6 +310,33 @@ enum AuthButtonVariant {
|
|||||||
outline,
|
outline,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_ButtonColors _getColors(ThemeData theme) {
|
||||||
|
switch (widget.variant) {
|
||||||
|
case AuthButtonVariant.primary:
|
||||||
|
return _ButtonColors(
|
||||||
|
background: theme.colorScheme.primary,
|
||||||
|
foreground: theme.colorScheme.onPrimary,
|
||||||
|
disabledBackground: theme.colorScheme.primary.withOpacity(0.12),
|
||||||
|
disabledForeground: theme.colorScheme.onPrimary.withOpacity(0.38),
|
||||||
|
);
|
||||||
|
case AuthButtonVariant.secondary:
|
||||||
|
return _ButtonColors(
|
||||||
|
background: theme.colorScheme.secondary,
|
||||||
|
foreground: theme.colorScheme.onSecondary,
|
||||||
|
disabledBackground: theme.colorScheme.secondary.withOpacity(0.12),
|
||||||
|
disabledForeground: theme.colorScheme.onSecondary.withOpacity(0.38),
|
||||||
|
);
|
||||||
|
case AuthButtonVariant.outline:
|
||||||
|
return _ButtonColors(
|
||||||
|
background: Colors.transparent,
|
||||||
|
foreground: theme.colorScheme.primary,
|
||||||
|
disabledBackground: Colors.transparent,
|
||||||
|
disabledForeground: theme.colorScheme.primary.withOpacity(0.38),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
class _ButtonColors {
|
class _ButtonColors {
|
||||||
final Color background;
|
final Color background;
|
||||||
final Color foreground;
|
final Color foreground;
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter/services.dart';
|
import 'package:flutter/services.dart';
|
||||||
|
import 'package:flutter/semantics.dart';
|
||||||
|
|
||||||
/// Reusable authentication form with email and password fields
|
/// Reusable authentication form with email and password fields
|
||||||
class AuthForm extends StatefulWidget {
|
class AuthForm extends StatefulWidget {
|
||||||
@@ -21,6 +22,8 @@ class AuthForm extends StatefulWidget {
|
|||||||
final String? emailLabel;
|
final String? emailLabel;
|
||||||
final String? passwordLabel;
|
final String? passwordLabel;
|
||||||
final String? confirmPasswordLabel;
|
final String? confirmPasswordLabel;
|
||||||
|
final String? formWideError;
|
||||||
|
final VoidCallback? onErrorDismissed;
|
||||||
|
|
||||||
const AuthForm({
|
const AuthForm({
|
||||||
super.key,
|
super.key,
|
||||||
@@ -42,6 +45,8 @@ class AuthForm extends StatefulWidget {
|
|||||||
this.emailLabel = 'Email',
|
this.emailLabel = 'Email',
|
||||||
this.passwordLabel = 'Password',
|
this.passwordLabel = 'Password',
|
||||||
this.confirmPasswordLabel = 'Confirm Password',
|
this.confirmPasswordLabel = 'Confirm Password',
|
||||||
|
this.formWideError,
|
||||||
|
this.onErrorDismissed,
|
||||||
});
|
});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
@@ -51,6 +56,7 @@ class AuthForm extends StatefulWidget {
|
|||||||
class _AuthFormState extends State<AuthForm> {
|
class _AuthFormState extends State<AuthForm> {
|
||||||
bool _obscurePassword = true;
|
bool _obscurePassword = true;
|
||||||
bool _obscureConfirmPassword = true;
|
bool _obscureConfirmPassword = true;
|
||||||
|
String? _lastAnnouncedError;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
@@ -59,12 +65,30 @@ class _AuthFormState extends State<AuthForm> {
|
|||||||
child: Column(
|
child: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||||
children: [
|
children: [
|
||||||
_buildEmailField(),
|
// Form-wide error display
|
||||||
const SizedBox(height: 16),
|
if (widget.formWideError != null) ...[
|
||||||
_buildPasswordField(),
|
_buildFormWideError(),
|
||||||
if (widget.confirmPassword != null) ...[
|
|
||||||
const SizedBox(height: 16),
|
const SizedBox(height: 16),
|
||||||
|
],
|
||||||
|
_buildEmailField(),
|
||||||
|
if (widget.emailError != null) ...[
|
||||||
|
const SizedBox(height: 8),
|
||||||
|
_buildFieldError(widget.emailError!),
|
||||||
|
] else
|
||||||
|
const SizedBox(height: 16),
|
||||||
|
_buildPasswordField(),
|
||||||
|
if (widget.passwordError != null) ...[
|
||||||
|
const SizedBox(height: 8),
|
||||||
|
_buildFieldError(widget.passwordError!),
|
||||||
|
] else
|
||||||
|
const SizedBox(height: 16),
|
||||||
|
if (widget.confirmPassword != null) ...[
|
||||||
_buildConfirmPasswordField(),
|
_buildConfirmPasswordField(),
|
||||||
|
if (widget.confirmPasswordError != null) ...[
|
||||||
|
const SizedBox(height: 8),
|
||||||
|
_buildFieldError(widget.confirmPasswordError!),
|
||||||
|
] else
|
||||||
|
const SizedBox(height: 16),
|
||||||
],
|
],
|
||||||
const SizedBox(height: 24),
|
const SizedBox(height: 24),
|
||||||
_buildSubmitButton(),
|
_buildSubmitButton(),
|
||||||
@@ -76,7 +100,11 @@ class _AuthFormState extends State<AuthForm> {
|
|||||||
Widget _buildEmailField() {
|
Widget _buildEmailField() {
|
||||||
return TextFormField(
|
return TextFormField(
|
||||||
initialValue: widget.email,
|
initialValue: widget.email,
|
||||||
onChanged: widget.onEmailChanged,
|
onChanged: (value) {
|
||||||
|
// Clear errors when user starts typing
|
||||||
|
_clearErrorsOnUserInput('email');
|
||||||
|
widget.onEmailChanged?.call(value);
|
||||||
|
},
|
||||||
autofocus: widget.autofocusEmail,
|
autofocus: widget.autofocusEmail,
|
||||||
keyboardType: TextInputType.emailAddress,
|
keyboardType: TextInputType.emailAddress,
|
||||||
textInputAction: TextInputAction.next,
|
textInputAction: TextInputAction.next,
|
||||||
@@ -131,7 +159,11 @@ class _AuthFormState extends State<AuthForm> {
|
|||||||
Widget _buildPasswordField() {
|
Widget _buildPasswordField() {
|
||||||
return TextFormField(
|
return TextFormField(
|
||||||
initialValue: widget.password,
|
initialValue: widget.password,
|
||||||
onChanged: widget.onPasswordChanged,
|
onChanged: (value) {
|
||||||
|
// Clear errors when user starts typing
|
||||||
|
_clearErrorsOnUserInput('password');
|
||||||
|
widget.onPasswordChanged?.call(value);
|
||||||
|
},
|
||||||
obscureText: _obscurePassword,
|
obscureText: _obscurePassword,
|
||||||
textInputAction: widget.confirmPassword != null
|
textInputAction: widget.confirmPassword != null
|
||||||
? TextInputAction.next
|
? TextInputAction.next
|
||||||
@@ -209,7 +241,11 @@ class _AuthFormState extends State<AuthForm> {
|
|||||||
Widget _buildConfirmPasswordField() {
|
Widget _buildConfirmPasswordField() {
|
||||||
return TextFormField(
|
return TextFormField(
|
||||||
initialValue: widget.confirmPassword,
|
initialValue: widget.confirmPassword,
|
||||||
onChanged: widget.onConfirmPasswordChanged,
|
onChanged: (value) {
|
||||||
|
// Clear errors when user starts typing
|
||||||
|
_clearErrorsOnUserInput('confirmPassword');
|
||||||
|
widget.onConfirmPasswordChanged?.call(value);
|
||||||
|
},
|
||||||
obscureText: _obscureConfirmPassword,
|
obscureText: _obscureConfirmPassword,
|
||||||
textInputAction: TextInputAction.done,
|
textInputAction: TextInputAction.done,
|
||||||
onFieldSubmitted: (_) => widget.onSubmit?.call(),
|
onFieldSubmitted: (_) => widget.onSubmit?.call(),
|
||||||
@@ -299,4 +335,118 @@ class _AuthFormState extends State<AuthForm> {
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Builds form-wide error display with dismiss functionality
|
||||||
|
Widget _buildFormWideError() {
|
||||||
|
return Container(
|
||||||
|
padding: const EdgeInsets.all(12),
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: Theme.of(context).colorScheme.errorContainer,
|
||||||
|
borderRadius: BorderRadius.circular(8),
|
||||||
|
border: Border.all(
|
||||||
|
color: Theme.of(context).colorScheme.error,
|
||||||
|
width: 1,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
child: Row(
|
||||||
|
children: [
|
||||||
|
Icon(
|
||||||
|
Icons.error_outline,
|
||||||
|
size: 20,
|
||||||
|
color: Theme.of(context).colorScheme.error,
|
||||||
|
),
|
||||||
|
const SizedBox(width: 8),
|
||||||
|
Expanded(
|
||||||
|
child: Text(
|
||||||
|
widget.formWideError!,
|
||||||
|
style: Theme.of(context).textTheme.bodyMedium?.copyWith(
|
||||||
|
color: Theme.of(context).colorScheme.onErrorContainer,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
IconButton(
|
||||||
|
icon: Icon(
|
||||||
|
Icons.close,
|
||||||
|
size: 18,
|
||||||
|
color: Theme.of(context).colorScheme.error,
|
||||||
|
),
|
||||||
|
onPressed: () {
|
||||||
|
widget.onErrorDismissed?.call();
|
||||||
|
// Announce dismissal for accessibility
|
||||||
|
_announceForAccessibility('Error message dismissed');
|
||||||
|
},
|
||||||
|
tooltip: 'Dismiss error',
|
||||||
|
visualDensity: VisualDensity.compact,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Builds field-specific error display with icon
|
||||||
|
Widget _buildFieldError(String error) {
|
||||||
|
return Container(
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 12, vertical: 8),
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: Theme.of(context).colorScheme.errorContainer.withOpacity(0.5),
|
||||||
|
borderRadius: BorderRadius.circular(6),
|
||||||
|
border: Border.left(
|
||||||
|
color: Theme.of(context).colorScheme.error,
|
||||||
|
width: 3,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
child: Row(
|
||||||
|
children: [
|
||||||
|
Icon(
|
||||||
|
Icons.info_outline,
|
||||||
|
size: 16,
|
||||||
|
color: Theme.of(context).colorScheme.error,
|
||||||
|
),
|
||||||
|
const SizedBox(width: 8),
|
||||||
|
Expanded(
|
||||||
|
child: Text(
|
||||||
|
error,
|
||||||
|
style: Theme.of(context).textTheme.bodySmall?.copyWith(
|
||||||
|
color: Theme.of(context).colorScheme.error,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Clears errors when user starts typing in fields
|
||||||
|
void _clearErrorsOnUserInput(String fieldType) {
|
||||||
|
// Check if we need to announce error clearing for accessibility
|
||||||
|
bool hadError = false;
|
||||||
|
|
||||||
|
switch (fieldType) {
|
||||||
|
case 'email':
|
||||||
|
hadError = widget.emailError != null || widget.formWideError != null;
|
||||||
|
break;
|
||||||
|
case 'password':
|
||||||
|
hadError = widget.passwordError != null || widget.formWideError != null;
|
||||||
|
break;
|
||||||
|
case 'confirmPassword':
|
||||||
|
hadError = widget.confirmPasswordError != null || widget.formWideError != null;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Don't announce anything if there was no error before
|
||||||
|
if (!hadError) return;
|
||||||
|
|
||||||
|
// If parent doesn't handle error clearing, we can at least announce
|
||||||
|
if (widget.formWideError != null && _lastAnnouncedError != widget.formWideError) {
|
||||||
|
_announceForAccessibility('Error cleared');
|
||||||
|
_lastAnnouncedError = widget.formWideError;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Announces messages for screen readers
|
||||||
|
void _announceForAccessibility(String message) {
|
||||||
|
// Use Flutter's built-in semantics service for accessibility announcements
|
||||||
|
SemanticsService.announce(message, TextDirection.ltr);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user