chore: Adjust design of space avatars and more

This commit is contained in:
Christian Kußowski 2026-02-18 09:02:19 +01:00
commit 6d5ceba885
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652
8 changed files with 70 additions and 57 deletions

View file

@ -78,10 +78,7 @@ class ChatAppBarTitle extends StatelessWidget {
builder: (context, presence) {
final lastActiveTimestamp =
presence?.lastActiveTimestamp;
final style = TextStyle(
fontSize: 12,
color: Theme.of(context).colorScheme.outline,
);
final style = TextStyle(fontSize: 11);
if (presence?.currentlyActive == true) {
return Text(
L10n.of(context).currentlyActive,
@ -108,23 +105,13 @@ class ChatAppBarTitle extends StatelessWidget {
child: CircularProgressIndicator.adaptive(
strokeWidth: 1,
value: status.progress,
valueColor: status.error != null
? AlwaysStoppedAnimation<Color>(
Theme.of(context).colorScheme.error,
)
: null,
),
),
const SizedBox(width: 4),
Expanded(
child: Text(
status.calcLocalizedString(context),
style: TextStyle(
fontSize: 12,
color: status.error != null
? Theme.of(context).colorScheme.error
: null,
),
style: TextStyle(fontSize: 12),
),
),
],