This commit is contained in:
Михаил Капелько
2026-06-04 18:49:27 +03:00
parent 2e0597d4a4
commit 57de3d9b21

View File

@@ -119,7 +119,7 @@ class Tile extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(
return AnimatedContainer(
child: Center(
child: Text(
letter.toUpperCase(),
@@ -130,6 +130,7 @@ class Tile extends StatelessWidget {
border: Border.all(color: Colors.grey.shade300),
color: tutTileColor(hitType),
),
duration: Duration(milliseconds: 300),
height: 60,
width: 60,
);