From 6bddfa22d74bb22c9abd18648dd757a83ba9a021 Mon Sep 17 00:00:00 2001 From: JiWoong Sul Date: Tue, 9 Sep 2025 23:16:46 +0900 Subject: [PATCH] fix(zipcode): use full popup width by removing width cap; table now fills dialog and fits columns without horizontal scroll --- lib/screens/company/company_form.dart | 1 - lib/screens/warehouse_location/warehouse_location_form.dart | 1 - 2 files changed, 2 deletions(-) diff --git a/lib/screens/company/company_form.dart b/lib/screens/company/company_form.dart index d90e8b4..7316f87 100644 --- a/lib/screens/company/company_form.dart +++ b/lib/screens/company/company_form.dart @@ -109,7 +109,6 @@ _controller = CompanyFormController( GetIt.instance(), ), child: ZipcodeSearchScreen( - tableMaxWidthFraction: 0.18, onSelect: (zipcode) { Navigator.of(dialogContext).pop(zipcode); }, diff --git a/lib/screens/warehouse_location/warehouse_location_form.dart b/lib/screens/warehouse_location/warehouse_location_form.dart index c2e9bbc..1e45eef 100644 --- a/lib/screens/warehouse_location/warehouse_location_form.dart +++ b/lib/screens/warehouse_location/warehouse_location_form.dart @@ -80,7 +80,6 @@ class _WarehouseLocationFormScreenState GetIt.instance(), ), child: ZipcodeSearchScreen( - tableMaxWidthFraction: 0.18, onSelect: (zipcode) { Navigator.of(dialogContext).pop(zipcode); },