기존 프로젝트 최초 업로드

This commit is contained in:
moonsihoo
2026-07-28 19:00:30 +09:00
commit 7135854933
150 changed files with 9629 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
import 'package:flutter/material.dart';
import 'nfc_poccket_checkin_screen.dart';
// 🧪 디버그 전용 진입점: NFC 주머니 체크인 + 조도 센서 감시 화면을 바로 테스트하기 위한 파일.
void main() {
runApp(const DebugPocketApp());
}
class DebugPocketApp extends StatelessWidget {
const DebugPocketApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
debugShowCheckedModeBanner: false,
home: NfcPocketCheckInScreen(
studentId: "2061",
studentName: "디버그테스트",
),
);
}
}