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