mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-22 00:12:09 +03:00
Remove _outline variants of icons
This commit is contained in:
parent
c4ce9c88eb
commit
028d417dd9
@ -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();
|
||||
|
@ -181,7 +181,7 @@ class _IconPackDescription extends ConsumerWidget {
|
||||
},
|
||||
);
|
||||
},
|
||||
icon: const Icon(Symbols.delete_outline)),
|
||||
icon: const Icon(Symbols.delete)),
|
||||
],
|
||||
)
|
||||
]);
|
||||
|
@ -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),
|
||||
|
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user