insert invoice pages
This commit is contained in:
@@ -107,7 +107,10 @@ class _PackageListState extends State<PackageList> {
|
||||
shrinkWrap: true,
|
||||
itemCount: packageModel.upcoming.length,
|
||||
itemBuilder: (BuildContext context, int index) {
|
||||
return PackageListRow(package: packageModel.upcoming[index]);
|
||||
return PackageListRow(
|
||||
package: packageModel.upcoming[index],
|
||||
isReadOnly: false,
|
||||
);
|
||||
}),
|
||||
),
|
||||
],
|
||||
@@ -128,7 +131,10 @@ class _PackageListState extends State<PackageList> {
|
||||
shrinkWrap: true,
|
||||
itemCount: packageModel.completed.length,
|
||||
itemBuilder: (BuildContext context, int index) {
|
||||
return PackageListRow(package: packageModel.completed[index]);
|
||||
return PackageListRow(
|
||||
package: packageModel.completed[index],
|
||||
isReadOnly: false,
|
||||
);
|
||||
}),
|
||||
),
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user