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
//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<String, int>? parents;
//!SECTION
//
const FormGroupWrapperTest({
const FormGroupWrapper({
super.key,
required this.formController,
required this.groupID,
@@ -35,10 +35,10 @@ class FormGroupWrapperTest extends StatefulWidget {
});
@override
State<FormGroupWrapperTest> createState() => _FormGroupWrapperTestState();
State<FormGroupWrapper> createState() => _FormGroupWrapperState();
}
class _FormGroupWrapperTestState extends State<FormGroupWrapperTest> {
class _FormGroupWrapperState extends State<FormGroupWrapper> {
//
//SECTION - State Variables
//s1 --State