Remove _outline variants of icons

This commit is contained in:
Dain Nilsson 2024-03-08 14:05:06 +01:00
parent c4ce9c88eb
commit 028d417dd9
No known key found for this signature in database
GPG Key ID: F04367096FBA95E8
4 changed files with 4 additions and 4 deletions

View File

@ -220,7 +220,7 @@ extension OathFunctions on WidgetTester {
await openAccountDialog(a);
/// click the delete IconButton in the account dialog
var deleteIconButton = find.byIcon(Symbols.delete_outline).hitTestable();
var deleteIconButton = find.byIcon(Symbols.delete).hitTestable();
expect(deleteIconButton, findsOneWidget);
await tap(deleteIconButton);
await longWait();

View File

@ -181,7 +181,7 @@ class _IconPackDescription extends ConsumerWidget {
},
);
},
icon: const Icon(Symbols.delete_outline)),
icon: const Icon(Symbols.delete)),
],
)
]);

View File

@ -108,7 +108,7 @@ class AccountHelper {
key: keys.deleteAction,
feature: features.accountsDelete,
actionStyle: ActionStyle.error,
icon: const Icon(Symbols.delete_outline),
icon: const Icon(Symbols.delete),
title: l10n.s_delete_account,
subtitle: l10n.l_delete_account_desc,
intent: DeleteIntent(credential),

View File

@ -407,7 +407,7 @@ class _OathAddAccountPageState extends ConsumerState<OathAddAccountPage> {
: isUnique
? null
: l10n.l_name_already_exists,
prefixIcon: const Icon(Symbols.person_outline),
prefixIcon: const Icon(Symbols.person),
),
textInputAction: TextInputAction.next,
onChanged: (value) {