사용하지 않는 파일 정리 전 백업 (Phase 10 완료 후 상태)

This commit is contained in:
JiWoong Sul
2025-08-29 15:11:59 +09:00
parent a740ff10c8
commit d916b281a7
333 changed files with 53617 additions and 22574 deletions

View File

@@ -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) {