사용하지 않는 파일 정리 전 백업 (Phase 10 완료 후 상태)
This commit is contained in:
@@ -13,7 +13,7 @@ class FormLayoutTemplate extends StatelessWidget {
|
||||
final Widget? customActions;
|
||||
|
||||
const FormLayoutTemplate({
|
||||
Key? key,
|
||||
super.key,
|
||||
required this.title,
|
||||
required this.child,
|
||||
this.onSave,
|
||||
@@ -22,7 +22,7 @@ class FormLayoutTemplate extends StatelessWidget {
|
||||
this.isLoading = false,
|
||||
this.showBottomButtons = true,
|
||||
this.customActions,
|
||||
}) : super(key: key);
|
||||
});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
@@ -108,12 +108,12 @@ class FormSection extends StatelessWidget {
|
||||
final EdgeInsetsGeometry? padding;
|
||||
|
||||
const FormSection({
|
||||
Key? key,
|
||||
super.key,
|
||||
this.title,
|
||||
this.subtitle,
|
||||
required this.children,
|
||||
this.padding,
|
||||
}) : super(key: key);
|
||||
});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
@@ -157,7 +157,7 @@ class FormSection extends StatelessWidget {
|
||||
} else {
|
||||
return child;
|
||||
}
|
||||
}).toList(),
|
||||
}),
|
||||
],
|
||||
),
|
||||
);
|
||||
@@ -172,12 +172,12 @@ class FormFieldWrapper extends StatelessWidget {
|
||||
final Widget child;
|
||||
|
||||
const FormFieldWrapper({
|
||||
Key? key,
|
||||
super.key,
|
||||
required this.label,
|
||||
this.hint,
|
||||
this.required = false,
|
||||
required this.child,
|
||||
}) : super(key: key);
|
||||
});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
|
||||
Reference in New Issue
Block a user