Control 페이지 UI 구현 및 앱 테마 컬러(Red) 변경 완료
This commit is contained in:
15
lib/alerts_report_screen.dart
Normal file
15
lib/alerts_report_screen.dart
Normal file
@@ -0,0 +1,15 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class AlertsReportScreen extends StatelessWidget {
|
||||
const AlertsReportScreen({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return const Center(
|
||||
child: Text(
|
||||
'4. 알림/신고 (Alerts/Report) 페이지',
|
||||
style: TextStyle(color: Colors.white70, fontSize: 20),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user