update carton list and editor

This commit is contained in:
tzw
2024-02-01 18:07:40 +06:30
parent eff1ae4688
commit 24f2dc110c
20 changed files with 1951 additions and 954 deletions

View File

@@ -0,0 +1,7 @@
enum StepType { TYPE, CARTONS, SIZE, PACKAGES, CARGOS, SUBMIT }
class LocalStep {
String lable;
StepType stepType;
LocalStep({required this.lable, required this.stepType});
}