diff --git a/lib/src/form/src/form_group_wrapper.dart b/lib/src/form/src/form_group_wrapper.dart index ae4824e..5d97d25 100644 --- a/lib/src/form/src/form_group_wrapper.dart +++ b/lib/src/form/src/form_group_wrapper.dart @@ -14,7 +14,7 @@ import 'models/models.exports.dart'; //s3 Usecases //s1 Exports -class FormGroupWrapperTest extends StatefulWidget { +class FormGroupWrapper extends StatefulWidget { //SECTION - Widget Arguments final AstromicFormController formController; final String groupID; @@ -24,7 +24,7 @@ class FormGroupWrapperTest extends StatefulWidget { final Map? parents; //!SECTION // - const FormGroupWrapperTest({ + const FormGroupWrapper({ super.key, required this.formController, required this.groupID, @@ -35,10 +35,10 @@ class FormGroupWrapperTest extends StatefulWidget { }); @override - State createState() => _FormGroupWrapperTestState(); + State createState() => _FormGroupWrapperState(); } -class _FormGroupWrapperTestState extends State { +class _FormGroupWrapperState extends State { // //SECTION - State Variables //s1 --State