From 2a27c1acb32a7cc9a32d2819c6a99368478cbfa7 Mon Sep 17 00:00:00 2001 From: JiWoong Sul Date: Tue, 9 Sep 2025 23:04:59 +0900 Subject: [PATCH] chore(zipcode): reduce dialog table width to 18% of screen (was 25%) --- lib/screens/company/company_form.dart | 2 +- lib/screens/warehouse_location/warehouse_location_form.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/screens/company/company_form.dart b/lib/screens/company/company_form.dart index 7989f6c..d90e8b4 100644 --- a/lib/screens/company/company_form.dart +++ b/lib/screens/company/company_form.dart @@ -109,7 +109,7 @@ _controller = CompanyFormController( GetIt.instance(), ), child: ZipcodeSearchScreen( - tableMaxWidthFraction: 0.25, + 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 65432cb..c2e9bbc 100644 --- a/lib/screens/warehouse_location/warehouse_location_form.dart +++ b/lib/screens/warehouse_location/warehouse_location_form.dart @@ -80,7 +80,7 @@ class _WarehouseLocationFormScreenState GetIt.instance(), ), child: ZipcodeSearchScreen( - tableMaxWidthFraction: 0.25, + tableMaxWidthFraction: 0.18, onSelect: (zipcode) { Navigator.of(dialogContext).pop(zipcode); },