[SYNC]
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user