From 0c37ac97d4462468d951e004da94417a5ff18bc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Ku=C3=9Fowski?= Date: Fri, 22 Aug 2025 11:33:29 +0200 Subject: [PATCH] chore: Follow up subtitle font style --- lib/config/themes.dart | 3 --- lib/pages/chat/chat_app_bar_title.dart | 8 ++++---- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/lib/config/themes.dart b/lib/config/themes.dart index e66fc5e05..6b20af645 100644 --- a/lib/config/themes.dart +++ b/lib/config/themes.dart @@ -102,9 +102,6 @@ abstract class FluffyThemes { systemNavigationBarColor: colorScheme.surface, ), ), - listTileTheme: ListTileThemeData( - subtitleTextStyle: TextStyle(color: colorScheme.outline, fontSize: 14), - ), outlinedButtonTheme: OutlinedButtonThemeData( style: OutlinedButton.styleFrom( side: BorderSide( diff --git a/lib/pages/chat/chat_app_bar_title.dart b/lib/pages/chat/chat_app_bar_title.dart index 906adb5c1..f56091333 100644 --- a/lib/pages/chat/chat_app_bar_title.dart +++ b/lib/pages/chat/chat_app_bar_title.dart @@ -78,10 +78,10 @@ class ChatAppBarTitle extends StatelessWidget { builder: (context, presence) { final lastActiveTimestamp = presence?.lastActiveTimestamp; - final style = Theme.of(context) - .listTileTheme - .subtitleTextStyle - ?.copyWith(fontSize: 12); + final style = TextStyle( + fontSize: 12, + color: Theme.of(context).colorScheme.outline, + ); if (presence?.currentlyActive == true) { return Text( L10n.of(context).currentlyActive,