Multi step list and editor UI done

This commit is contained in:
Sewmina
2022-03-15 02:49:27 +05:30
parent 26c6907d43
commit 03cb6b81c4
3 changed files with 450 additions and 332 deletions

View File

@@ -90,10 +90,11 @@ class Queries{
}
class ProjectStep{
ProjectStep(this.stepName,this.eta);
ProjectStep(this.stepName,this.eta,this.progress);
String stepName;
int eta;
int progress;
}