import 'package:flutter/material.dart'; // TETRIG 진입점 (Flutter, Android + iOS). // 게임 UI(목업 ② 인게임 + §11 터치 버튼)는 다음 단계에서 이 자리에 붙는다. // 코어 로직은 lib/engine.dart (UI와 분리, Dart 테스트로 검증됨). void main() => runApp(const TetrigApp()); class TetrigApp extends StatelessWidget { const TetrigApp({super.key}); @override Widget build(BuildContext context) { return const MaterialApp( title: 'TETRIG', debugShowCheckedModeBanner: false, home: Scaffold( backgroundColor: Color(0xFF17161B), // INK body: Center( child: Text( 'TETRIG', style: TextStyle( color: Color(0xFFEDE7DA), // BONE fontSize: 44, fontWeight: FontWeight.w900, fontStyle: FontStyle.italic, letterSpacing: 1, ), ), ), ), ); } }