환경 초기화 및 벤더 리포지토리 스켈레톤 도입

This commit is contained in:
JiWoong Sul
2025-09-22 17:38:51 +09:00
commit 5c9de2594a
171 changed files with 13304 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
import 'package:flutter/widgets.dart';
import '../../../../widgets/spec_page.dart';
class ReportingPage extends StatelessWidget {
const ReportingPage({super.key});
@override
Widget build(BuildContext context) {
return const SpecPage(
title: '보고서',
summary: '기간, 유형, 창고, 상태 조건으로 보고서를 조회하고 내보냅니다.',
sections: [
SpecSection(
title: '조건 입력',
items: [
'기간 [Date Range]',
'유형 [Dropdown]',
'창고 [Dropdown]',
'상태 [Dropdown]',
],
),
SpecSection(
title: '출력 옵션',
items: ['XLSX 다운로드 [Button]', 'PDF 다운로드 [Button]'],
),
],
);
}
}