This commit is contained in:
2025-04-14 12:23:26 +02:00
parent a7b98c93f4
commit f6a6635225

View File

@@ -14,7 +14,7 @@ import 'models/models.exports.dart';
//s3 Usecases //s3 Usecases
//s1 Exports //s1 Exports
class FormGroupWrapperTest extends StatefulWidget { class FormGroupWrapper extends StatefulWidget {
//SECTION - Widget Arguments //SECTION - Widget Arguments
final AstromicFormController formController; final AstromicFormController formController;
final String groupID; final String groupID;
@@ -24,7 +24,7 @@ class FormGroupWrapperTest extends StatefulWidget {
final Map<String, int>? parents; final Map<String, int>? parents;
//!SECTION //!SECTION
// //
const FormGroupWrapperTest({ const FormGroupWrapper({
super.key, super.key,
required this.formController, required this.formController,
required this.groupID, required this.groupID,
@@ -35,10 +35,10 @@ class FormGroupWrapperTest extends StatefulWidget {
}); });
@override @override
State<FormGroupWrapperTest> createState() => _FormGroupWrapperTestState(); State<FormGroupWrapper> createState() => _FormGroupWrapperState();
} }
class _FormGroupWrapperTestState extends State<FormGroupWrapperTest> { class _FormGroupWrapperState extends State<FormGroupWrapper> {
// //
//SECTION - State Variables //SECTION - State Variables
//s1 --State //s1 --State