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