first commit

This commit is contained in:
2026-06-15 18:12:31 +09:00
commit 319cabe9f8
148 changed files with 6242 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import 'package:flutter/material.dart';
class TvocDataPage extends StatelessWidget {
const TvocDataPage({super.key});
@override
Widget build(BuildContext context) {
return const Center(
child: Text(
'🧪 실시간 총휘발성유기화합물(TVOC) 측정값',
style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold, color: Colors.white60),
),
);
}
}