Files
smarthelmet_app/lib/alerts_report_screen.dart

15 lines
367 B
Dart

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),
),
);
}
}