From 52237ab4d827835fdf535f3d4364632e6d269b15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9C=D0=B8=D1=85=D0=B0=D0=B8=D0=BB=20=D0=9A=D0=B0=D0=BF?= =?UTF-8?q?=D0=B5=D0=BB=D1=8C=D0=BA=D0=BE?= Date: Tue, 2 Jun 2026 18:49:08 +0300 Subject: [PATCH] game page stub --- src/main.dart | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/src/main.dart b/src/main.dart index b93d850..2b0f8aa 100644 --- a/src/main.dart +++ b/src/main.dart @@ -6,6 +6,17 @@ void main() { runApp(const MainApp()); } +class GamePage extends StatelessWidget { + GamePage({super.key}); + + final Game _game = Game(); + + @override + Widget build(BuildContext context) { + return Container(); + } +} + class MainApp extends StatelessWidget { const MainApp({super.key}); @@ -19,9 +30,8 @@ class MainApp extends StatelessWidget { child: Text("Birdle"), ), ), - body: Center( - child: Tile("A", HitType.hit), - ), + //body: Center(child: Tile("A", HitType.hit)), + body: Center(child: GamePage()), ), ); }