Update packages, increment version, dart fix

This commit is contained in:
Imran Remtulla
2024-01-12 22:32:33 -05:00
parent d46f0a1c33
commit a25c04b390
4 changed files with 16 additions and 16 deletions

View File

@ -174,13 +174,13 @@ class GeneratedForm extends StatefulWidget {
List<List<GeneratedFormItem>> cloneFormItems(
List<List<GeneratedFormItem>> items) {
List<List<GeneratedFormItem>> clonedItems = [];
items.forEach((row) {
for (var row in items) {
List<GeneratedFormItem> clonedRow = [];
row.forEach((it) {
for (var it in row) {
clonedRow.add(it.clone());
});
}
clonedItems.add(clonedRow);
});
}
return clonedItems;
}