fix(zipcode): use full popup width by removing width cap; table now fills dialog and fits columns without horizontal scroll
Some checks failed
Flutter Test & Quality Check / Test on macos-latest (push) Has been cancelled
Flutter Test & Quality Check / Test on ubuntu-latest (push) Has been cancelled
Flutter Test & Quality Check / Build APK (push) Has been cancelled

This commit is contained in:
JiWoong Sul
2025-09-09 23:16:46 +09:00
parent 32eee2bfe2
commit 6bddfa22d7
2 changed files with 0 additions and 2 deletions

View File

@@ -109,7 +109,6 @@ _controller = CompanyFormController(
GetIt.instance<ZipcodeUseCase>(), GetIt.instance<ZipcodeUseCase>(),
), ),
child: ZipcodeSearchScreen( child: ZipcodeSearchScreen(
tableMaxWidthFraction: 0.18,
onSelect: (zipcode) { onSelect: (zipcode) {
Navigator.of(dialogContext).pop(zipcode); Navigator.of(dialogContext).pop(zipcode);
}, },

View File

@@ -80,7 +80,6 @@ class _WarehouseLocationFormScreenState
GetIt.instance<ZipcodeUseCase>(), GetIt.instance<ZipcodeUseCase>(),
), ),
child: ZipcodeSearchScreen( child: ZipcodeSearchScreen(
tableMaxWidthFraction: 0.18,
onSelect: (zipcode) { onSelect: (zipcode) {
Navigator.of(dialogContext).pop(zipcode); Navigator.of(dialogContext).pop(zipcode);
}, },