Control 페이지 UI 구현 및 앱 테마 컬러(Red) 변경 완료

This commit is contained in:
KIMGYEONGRAN
2025-11-24 17:46:44 +09:00
parent f78b7ea50e
commit 02fd25264d
11 changed files with 1302 additions and 775 deletions

15
lib/settings_screen.dart Normal file
View File

@@ -0,0 +1,15 @@
import 'package:flutter/material.dart';
class SettingsScreen extends StatelessWidget {
const SettingsScreen({super.key});
@override
Widget build(BuildContext context) {
return const Center(
child: Text(
'5. 설정 (Settings) 페이지',
style: TextStyle(color: Colors.white70, fontSize: 20),
),
);
}
}