mine sweeper pt2

This commit is contained in:
2025-10-17 08:24:23 +02:00
parent d51603ff5d
commit 540e13dfe0
2 changed files with 28 additions and 0 deletions

View File

@@ -36,6 +36,7 @@ class MineTile extends StatelessWidget {
child: Text(
'${square.bombsAround}',
style: TextStyle(
fontSize: 25,
fontWeight: FontWeight.bold,
color: _getTileColor(square.bombsAround, context),
),