Change to passkeys icon

This commit is contained in:
Elias Bonnici 2024-03-21 08:21:34 +01:00
parent b46ae6082e
commit 5e91579460
No known key found for this signature in database
GPG Key ID: 5EAC28EA3F980CCF
2 changed files with 6 additions and 5 deletions

View File

@ -75,7 +75,7 @@ class CredentialDialog extends ConsumerWidget {
),
),
const SizedBox(height: 16),
const Icon(Symbols.person, size: 72),
const Icon(Symbols.passkey, size: 72),
],
),
),

View File

@ -453,7 +453,7 @@ class _FidoUnlockedPageState extends ConsumerState<_FidoUnlockedPage> {
),
),
const SizedBox(height: 16),
const Icon(Symbols.person, size: 72),
const Icon(Symbols.passkey, size: 72),
],
),
),
@ -529,13 +529,14 @@ class _CredentialListItem extends StatelessWidget {
@override
Widget build(BuildContext context) {
final colorScheme = Theme.of(context).colorScheme;
return AppListItem(
credential,
selected: selected,
leading: CircleAvatar(
foregroundColor: Theme.of(context).colorScheme.onPrimary,
backgroundColor: Theme.of(context).colorScheme.primary,
child: const Icon(Symbols.person),
foregroundColor: colorScheme.onSecondary,
backgroundColor: colorScheme.secondary,
child: const Icon(Symbols.passkey),
),
title: credential.userName,
subtitle: credential.rpId,