사용하지 않는 파일 정리 전 백업 (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

@@ -17,7 +17,7 @@ class AutocompleteDropdown extends StatelessWidget {
final Widget emptyWidget;
const AutocompleteDropdown({
Key? key,
super.key,
required this.items,
required this.inputText,
required this.onSelect,
@@ -27,7 +27,7 @@ class AutocompleteDropdown extends StatelessWidget {
padding: EdgeInsets.all(12.0),
child: Text('검색 결과가 없습니다'),
),
}) : super(key: key);
});
@override
Widget build(BuildContext context) {

View File

@@ -12,13 +12,13 @@ class CategorySelectionField extends StatefulWidget {
final bool isRequired;
const CategorySelectionField({
Key? key,
super.key,
required this.category,
required this.subCategory,
required this.subSubCategory,
required this.onCategoryChanged,
this.isRequired = false,
}) : super(key: key);
});
@override
State<CategorySelectionField> createState() => _CategorySelectionFieldState();

View File

@@ -10,12 +10,12 @@ class DatePickerField extends StatelessWidget {
final bool isRequired;
const DatePickerField({
Key? key,
super.key,
required this.selectedDate,
required this.onDateChanged,
this.allowFutureDate = false,
this.isRequired = false,
}) : super(key: key);
});
@override
Widget build(BuildContext context) {

View File

@@ -7,11 +7,11 @@ class FormFieldWrapper extends StatelessWidget {
final bool isRequired;
const FormFieldWrapper({
Key? key,
super.key,
required this.label,
required this.child,
this.isRequired = false,
}) : super(key: key);
});
@override
Widget build(BuildContext context) {

View File

@@ -12,12 +12,12 @@ class HighlightText extends StatelessWidget {
final TextStyle? style;
const HighlightText({
Key? key,
super.key,
required this.text,
required this.highlight,
this.highlightColor = Colors.blue,
this.style,
}) : super(key: key);
});
@override
Widget build(BuildContext context) {