From 4f7ada0302a4edf928e3b425c5c3a4faaea8cfe6 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Sun, 22 Feb 2026 12:15:35 -0700 Subject: [PATCH] Create a very simple text-based game board. --- lib/main.dart | 34 ++++++++++++++++++++++++++++++++-- 1 file changed, 32 insertions(+), 2 deletions(-) diff --git a/lib/main.dart b/lib/main.dart index a725658..f85712e 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -11,8 +11,38 @@ class MainApp extends StatelessWidget { Widget build(BuildContext context) { return const MaterialApp( home: Scaffold( - body: Center( - child: Text('Hello World!'), + body: Row( + children: [ + // Player 1 Goal + Column(children: [Text("P1")]), + // Center holes + Column( + children: [ + Row( + children: [ + Column(children: [Text("0,0")]), + Column(children: [Text("1,0")]), + Column(children: [Text("2,0")]), + Column(children: [Text("3,0")]), + Column(children: [Text("4,0")]), + Column(children: [Text("5,0")]), + ], + ), + Row( + children: [ + Column(children: [Text("0,1")]), + Column(children: [Text("1,1")]), + Column(children: [Text("2,1")]), + Column(children: [Text("3,1")]), + Column(children: [Text("4,1")]), + Column(children: [Text("5,1")]), + ], + ), + ], + ), + // Player 2 Goal + Column(children: [Text("P2")]), + ], ), ), );