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