game page stub

This commit is contained in:
Михаил Капелько
2026-06-02 18:49:08 +03:00
parent f0f229d566
commit 52237ab4d8

View File

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