mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-12-24 02:33:44 +03:00
51 lines
1.5 KiB
Dart
Executable File
51 lines
1.5 KiB
Dart
Executable File
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
import '../../app/message.dart';
|
|
import '../../widgets/responsive_dialog.dart';
|
|
import '../models.dart';
|
|
import '../state.dart';
|
|
import '../../app/models.dart';
|
|
import '../../app/state.dart';
|
|
|
|
class DeleteFingerprintDialog extends ConsumerWidget {
|
|
final DevicePath devicePath;
|
|
final Fingerprint fingerprint;
|
|
const DeleteFingerprintDialog(this.devicePath, this.fingerprint, {super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
final label = fingerprint.label;
|
|
|
|
return ResponsiveDialog(
|
|
title: const Text('Delete fingerprint'),
|
|
actions: [
|
|
TextButton(
|
|
onPressed: () async {
|
|
await ref
|
|
.read(fingerprintProvider(devicePath).notifier)
|
|
.deleteFingerprint(fingerprint);
|
|
await ref.read(withContextProvider)((context) async {
|
|
Navigator.of(context).pop(true);
|
|
showMessage(context, 'Fingerprint deleted');
|
|
});
|
|
},
|
|
child: const Text('Delete'),
|
|
),
|
|
],
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
const Text('This will delete the fingerprint from your YubiKey.'),
|
|
Text('Fingerprint: $label'),
|
|
]
|
|
.map((e) => Padding(
|
|
padding: const EdgeInsets.symmetric(vertical: 8.0),
|
|
child: e,
|
|
))
|
|
.toList(),
|
|
),
|
|
);
|
|
}
|
|
}
|