feat: Centralized Error Handling & Crash Fixes

This commit is contained in:
2026-02-11 18:52:23 +05:30
parent ea06510474
commit c1112ac01c
51 changed files with 2104 additions and 960 deletions

View File

@@ -29,6 +29,7 @@ class UiSnackbar {
required String message,
required UiSnackbarType type,
Duration duration = const Duration(seconds: 3),
EdgeInsetsGeometry? margin,
}) {
final Color textColor;
final Color backgroundColor;
@@ -63,6 +64,7 @@ class UiSnackbar {
backgroundColor: UiColors.transparent,
elevation: 0,
behavior: SnackBarBehavior.floating,
margin: margin ?? const EdgeInsets.all(16),
content: ClipRRect(
borderRadius: BorderRadius.circular(12),
child: BackdropFilter(