mirror of
				https://github.com/ImranR98/Obtainium.git
				synced 2025-10-31 05:23:28 +01: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; | ||||
| } | ||||
|  | ||||
|   | ||||
| @@ -19,7 +19,7 @@ import 'package:easy_localization/src/easy_localization_controller.dart'; | ||||
| // ignore: implementation_imports | ||||
| import 'package:easy_localization/src/localization.dart'; | ||||
|  | ||||
| const String currentVersion = '0.15.9'; | ||||
| const String currentVersion = '0.15.10'; | ||||
| const String currentReleaseTag = | ||||
|     'v$currentVersion-beta'; // KEEP THIS IN SYNC WITH GITHUB RELEASES | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user