chore(zipcode): adjust dialog table width to 25% of screen (from 33%)
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:02:55 +09:00
parent 0441305e1c
commit beb5641b85
2 changed files with 2 additions and 2 deletions

View File

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

View File

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