feat: Refactor inventory screens with category selection and product handling improvements
Test Suite / test (24.15.0) (push) Has been cancelled

This commit is contained in:
Nils-Johan Gynther
2026-05-11 21:09:40 +02:00
parent 2281df3716
commit 3e0af925d5
7 changed files with 319 additions and 145 deletions
@@ -0,0 +1,9 @@
String? normalizedOptionalText(String? value) {
final normalized = value?.trim();
if (normalized == null || normalized.isEmpty) return null;
return normalized;
}
String l1CategoryChipLabel(String prefix, String l1Category) => '$prefix$l1Category';
String locationLabel(String prefix, String location) => '$prefix$location';