From 57de3d9b217784e98d041854f0943e71169e7676 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9C=D0=B8=D1=85=D0=B0=D0=B8=D0=BB=20=D0=9A=D0=B0=D0=BF?= =?UTF-8?q?=D0=B5=D0=BB=D1=8C=D0=BA=D0=BE?= Date: Thu, 4 Jun 2026 18:49:27 +0300 Subject: [PATCH] anim --- src/main.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.dart b/src/main.dart index ed4a92c..775a6eb 100644 --- a/src/main.dart +++ b/src/main.dart @@ -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, );