chore: Slightly adjust font sizes and design

This commit is contained in:
Christian Kußowski 2025-08-20 09:46:27 +02:00
commit 2710e66fae
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652
4 changed files with 23 additions and 5 deletions

View file

@ -146,7 +146,20 @@ class _ShareScaffoldDialogState extends State<ShareScaffoldDialog> {
name: displayname,
size: Avatar.defaultSize * 0.75,
),
title: Text(displayname),
title: Text(
displayname,
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
subtitle: Text(
room.directChatMatrixID ??
L10n.of(context).countParticipants(
(room.summary.mJoinedMemberCount ?? 0) +
(room.summary.mInvitedMemberCount ?? 0),
),
maxLines: 1,
overflow: TextOverflow.ellipsis,
),
value: selectedRoomId == room.id,
onChanged: (_) => _toggleRoom(room.id),
),