From 64428294c91437cd9c0029ac18db4e5a45c501e8 Mon Sep 17 00:00:00 2001 From: ZIER Date: Thu, 26 Feb 2026 08:59:58 +0100 Subject: [PATCH] =?UTF-8?q?info=20=E2=80=A2=20Unnecessary=20use=20of=20str?= =?UTF-8?q?ing=20interpolation=20=E2=80=A2=20lib/widgets/app=5Fbar.dart:43?= =?UTF-8?q?:23=20=E2=80=A2=20unnecessary=5Fstring=5Finterpolations?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/widgets/app_bar.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/widgets/app_bar.dart b/lib/widgets/app_bar.dart index ba40e66..1afc531 100644 --- a/lib/widgets/app_bar.dart +++ b/lib/widgets/app_bar.dart @@ -40,7 +40,7 @@ class AppBarTitle extends StatelessWidget { Text(title, maxLines: 1, overflow: TextOverflow.ellipsis), if (showSubtitle) Text( - '$selfName', + selfName, style: TextStyle(fontSize: 14, color: Colors.grey[600]), maxLines: 1, overflow: TextOverflow.ellipsis,