Merge branch 'main' into weblate-fluffychat-translations

This commit is contained in:
Krille-chan 2025-08-25 07:15:22 +02:00 committed by GitHub
commit 14f479e978
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 7 deletions

View file

@ -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(

View file

@ -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,