chore: Follow up subtitle font style

pull/2124/head^2
Christian Kußowski 3 months ago
parent 2710e66fae
commit 0c37ac97d4
No known key found for this signature in database
GPG Key ID: E067ECD60F1A0652

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

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

Loading…
Cancel
Save