15 lines
400 B
Dart
15 lines
400 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class HumidDataPage extends StatelessWidget {
|
|
const HumidDataPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const Center(
|
|
child: Text(
|
|
'💧 실시간 토양 및 대기 습도 데이터 현황',
|
|
style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold, color: Colors.white60),
|
|
),
|
|
);
|
|
}
|
|
} |