Skip to content

Commit

Permalink
feat: Update wording #3199
Browse files Browse the repository at this point in the history
  • Loading branch information
bibash28 committed Dec 18, 2024
1 parent 9f9ec2a commit 3a0aac6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class Oidc4vcSettingMenuView extends StatelessWidget {
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
const SecurityLevelWidget(),
const DidKeyTypeWidget(),
const KeyIdentifierAndKeyTypeWidget(),
const DraftTypeWidget(),
const CryptographicHolderBindingWidget(),
const ScopeParameterWidget(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:oidc4vc/oidc4vc.dart';

class DidKeyTypeWidget extends StatelessWidget {
const DidKeyTypeWidget({super.key});
class KeyIdentifierAndKeyTypeWidget extends StatelessWidget {
const KeyIdentifierAndKeyTypeWidget({super.key});

@override
Widget build(BuildContext context) {
return BlocBuilder<ProfileCubit, ProfileState>(
builder: (context, state) {
return OptionContainer(
title: 'Default DID',
subtitle: 'Select one of the DIDs',
title: 'Key identifier and key type',
subtitle: 'Select jwk thumbprint or a DID method',
body: ListView.builder(
itemCount: DidKeyType.values.length,
shrinkWrap: true,
Expand Down

0 comments on commit 3a0aac6

Please sign in to comment.