기존 프로젝트 최초 업로드
This commit is contained in:
@@ -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: "디버그테스트",
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user