chore(zipcode): reduce dialog table width to 18% of screen (was 25%)
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:04:59 +09:00
parent beb5641b85
commit 2a27c1acb3
2 changed files with 2 additions and 2 deletions

View File

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