environment_monitoring_app/lib/screens/air/investigative/overview.dart
2025-08-04 15:11:24 +08:00

17 lines
639 B
Dart

import 'package:flutter/material.dart';
class OverviewScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text("Air Investigative Overview")),
body: Padding(
padding: const EdgeInsets.all(24),
child: Text(
"This screen provides an overview of investigative air quality studies. These studies are conducted in response to unusual pollution events, complaints, or targeted assessments. Data may include PM levels, VOCs, and meteorological conditions.",
style: TextStyle(fontSize: 16),
),
),
);
}
}