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

@@ -33,7 +33,7 @@ class StandardDataTable extends StatelessWidget {
final bool applyZebraStripes; // 짝수 행 배경색 적용 여부
const StandardDataTable({
Key? key,
super.key,
required this.columns,
required this.rows,
this.showCheckbox = false,
@@ -43,7 +43,7 @@ class StandardDataTable extends StatelessWidget {
this.horizontalScrollController,
this.emptyWidget,
this.applyZebraStripes = true,
}) : super(key: key);
});
@override
Widget build(BuildContext context) {
@@ -178,7 +178,7 @@ class StandardDataRow extends StatelessWidget {
final List<DataColumn> columns;
const StandardDataRow({
Key? key,
super.key,
required this.index,
required this.cells,
this.showCheckbox = false,
@@ -186,7 +186,7 @@ class StandardDataRow extends StatelessWidget {
this.onSelect,
this.applyZebraStripes = true,
required this.columns,
}) : super(key: key);
});
@override
Widget build(BuildContext context) {
@@ -254,13 +254,13 @@ class StandardActionButtons extends StatelessWidget {
final double buttonSize;
const StandardActionButtons({
Key? key,
super.key,
this.onView,
this.onEdit,
this.onDelete,
this.customButtons,
this.buttonSize = 32,
}) : super(key: key);
});
@override
Widget build(BuildContext context) {