- 이름/부제, "스마트 관리 시스템 메뉴" 제목을 중앙 정렬 - 타일을 1x1~4x4 크기로 자유 배치할 수 있는 편집 모드 추가 (6x4 캔버스, 삼성 One UI 위젯 편집 방식) - 타일 배치는 계정별로 서버에 저장/복원 (dashboard_layout_controller.dart) - 설정 화면(톱니바퀴 아이콘) > "UI 편집" 진입점 추가 - shared_preferences로 로그인 유지 기능 추가 (비밀번호는 저장하지 않음) Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
20 lines
578 B
Dart
20 lines
578 B
Dart
import 'package:flutter/material.dart';
|
|
import 'ui/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: "디버그테스트"),
|
|
);
|
|
}
|
|
}
|