feat: standard error handling, web bug fixes, and mock data setup

This commit is contained in:
2026-06-26 16:06:18 +05:30
parent 401cf600e8
commit 523609796e
18 changed files with 792 additions and 164 deletions

View File

@@ -9,6 +9,9 @@ class AddressEntry {
final IconData icon;
final Color iconBg;
final Color iconColor;
final double latitude;
final double longitude;
final String pincode;
const AddressEntry({
required this.label,
@@ -16,6 +19,9 @@ class AddressEntry {
required this.icon,
this.iconBg = AppColors.surfaceContainer,
this.iconColor = AppColors.onSurfaceVariant,
this.latitude = 0.0,
this.longitude = 0.0,
this.pincode = '',
});
}