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