game page stub
This commit is contained in:
@@ -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()),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user