From e7a8c36bc4a9753ad6d4f0475e99a3411e7976b9 Mon Sep 17 00:00:00 2001 From: ZIER Date: Thu, 26 Feb 2026 08:51:57 +0100 Subject: [PATCH] more aesthetically pleasing display of Companionname --- 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 e1cda77..ba40e66 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,