15 lines
397 B
Dart
15 lines
397 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class TempDataPage extends StatelessWidget {
|
|
const TempDataPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const Center(
|
|
child: Text(
|
|
'🌡️ 실시간 온도 데이터 수집 분석 현황',
|
|
style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold, color: Colors.white60),
|
|
),
|
|
);
|
|
}
|
|
} |