mirror of
https://github.com/ImranR98/Obtainium.git
synced 2025-07-13 13:26:43 +02:00
Update packages, increment version, dart fix
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user