chore: Adjust design

This commit is contained in:
Christian Kußowski 2026-03-10 09:29:45 +01:00
commit a490a40379
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652
6 changed files with 13 additions and 7 deletions

View file

@ -191,10 +191,9 @@ class _InviteContactListTile extends StatelessWidget {
overflow: TextOverflow.ellipsis,
style: TextStyle(color: theme.colorScheme.secondary),
),
trailing: TextButton.icon(
trailing: TextButton(
onPressed: isMember ? null : onTap,
label: Text(isMember ? l10n.participant : l10n.invite),
icon: Icon(isMember ? Icons.check : Icons.add),
child: Text(isMember ? l10n.participant : l10n.invite),
),
);
}