15 lines
396 B
Dart
15 lines
396 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class DustDataPage extends StatelessWidget {
|
|
const DustDataPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const Center(
|
|
child: Text(
|
|
'😷 실시간 미세먼지(PM2.5 / PM10) 모니터링',
|
|
style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold, color: Colors.white60),
|
|
),
|
|
);
|
|
}
|
|
} |