diff --git a/lib/dashboard/drawer/ssi/oidc4vc_settngs/view/oidc4vc_settings_menu.dart b/lib/dashboard/drawer/ssi/oidc4vc_settngs/view/oidc4vc_settings_menu.dart index 8bc442893..9dad548ac 100644 --- a/lib/dashboard/drawer/ssi/oidc4vc_settngs/view/oidc4vc_settings_menu.dart +++ b/lib/dashboard/drawer/ssi/oidc4vc_settngs/view/oidc4vc_settings_menu.dart @@ -42,7 +42,6 @@ class Oidc4vcSettingMenuView extends StatelessWidget { const SecurityLevelWidget(), const DidKeyTypeWidget(), const DraftTypeWidget(), - const CredentialManifestSupportWidget(), const CryptographicHolderBindingWidget(), const ScopeParameterWidget(), const ClientAuthenticationWidget(), diff --git a/lib/dashboard/drawer/ssi/oidc4vc_settngs/widget/credential_manifest_support.dart b/lib/dashboard/drawer/ssi/oidc4vc_settngs/widget/credential_manifest_support.dart deleted file mode 100644 index 3e64b8da6..000000000 --- a/lib/dashboard/drawer/ssi/oidc4vc_settngs/widget/credential_manifest_support.dart +++ /dev/null @@ -1,31 +0,0 @@ -import 'package:altme/dashboard/dashboard.dart'; -import 'package:altme/l10n/l10n.dart'; -import 'package:flutter/material.dart'; -import 'package:flutter_bloc/flutter_bloc.dart'; - -class CredentialManifestSupportWidget extends StatelessWidget { - const CredentialManifestSupportWidget({super.key}); - - @override - Widget build(BuildContext context) { - final l10n = context.l10n; - return BlocBuilder( - builder: (context, state) { - return OptionContainer( - title: l10n.credentialManifestSupport, - subtitle: l10n.credentialManifestSupportSubtitle, - body: Switch( - onChanged: (value) async { - await context.read().updateProfileSetting( - credentialManifestSupport: value, - ); - }, - value: state.model.profileSetting.selfSovereignIdentityOptions - .customOidc4vcProfile.credentialManifestSupport, - activeColor: Theme.of(context).colorScheme.primary, - ), - ); - }, - ); - } -} diff --git a/lib/dashboard/drawer/ssi/oidc4vc_settngs/widget/widget.dart b/lib/dashboard/drawer/ssi/oidc4vc_settngs/widget/widget.dart index 3e71e4391..ecff15b36 100644 --- a/lib/dashboard/drawer/ssi/oidc4vc_settngs/widget/widget.dart +++ b/lib/dashboard/drawer/ssi/oidc4vc_settngs/widget/widget.dart @@ -1,7 +1,6 @@ export 'client_authentication_widget.dart'; export 'client_credentials_widget.dart'; export 'client_type_widget.dart'; -export 'credential_manifest_support.dart'; export 'cryptograhic_holder_binding.dart'; export 'did_key_type_widget.dart'; export 'draft_type_widget.dart'; diff --git a/lib/l10n/arb/app_en.arb b/lib/l10n/arb/app_en.arb index c2f26551b..0d2a78bfb 100644 --- a/lib/l10n/arb/app_en.arb +++ b/lib/l10n/arb/app_en.arb @@ -920,8 +920,6 @@ "developerModeSubtitle": "Enable developer mode to access advanced debugging tools", "confirmVerifierAccess": "Confirm verifier access", "confirmVerifierAccessSubtitle": "Default: On\nDisable to skip confirmation when you share your verifiable credentials.", - "credentialManifestSupport": "Credential Manifest Support", - "credentialManifestSupportSubtitle": "Default: Off\nUse DIF Wallet Rendering syntax instead of the 'display' attribute.", "secureAuthenticationWithPINCode": "Secure Authentication with PIN Code", "secureAuthenticationWithPINCodeSubtitle": "Default: On\nTurn off to skip PIN code for website authentication (not recommended).", "youcanSelectOnlyXCredential": "You can select only {count} credential(s).",