chore(zipcode): remove copy icons and clipboard helpers; cap dialog width to 33% of screen
Some checks failed
Flutter Test & Quality Check / Build APK (push) Has been cancelled
Flutter Test & Quality Check / Test on macos-latest (push) Has been cancelled
Flutter Test & Quality Check / Test on ubuntu-latest (push) Has been cancelled

- Remove copy buttons in ZipcodeTable (zipcode and full address)
- Drop unused clipboard helper and import
- Use tableMaxWidthFraction: 0.33 in Company/Warehouse zipcode dialogs
This commit is contained in:
JiWoong Sul
2025-09-09 22:58:36 +09:00
parent 2bbef9defa
commit 0441305e1c
3 changed files with 5 additions and 31 deletions

View File

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