mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-23 18:58:29 +03:00
59 lines
1.8 KiB
Dart
59 lines
1.8 KiB
Dart
|
import 'package:flutter/material.dart';
|
||
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||
|
|
||
|
import '../../app/views/responsive_dialog.dart';
|
||
|
import '../models.dart';
|
||
|
import '../state.dart';
|
||
|
import '../../app/models.dart';
|
||
|
import '../../app/state.dart';
|
||
|
|
||
|
class DeleteFingerprintDialog extends ConsumerWidget {
|
||
|
final DeviceNode device;
|
||
|
final Fingerprint fingerprint;
|
||
|
const DeleteFingerprintDialog(this.device, this.fingerprint, {Key? key})
|
||
|
: super(key: key);
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context, WidgetRef ref) {
|
||
|
// If current device changes, we need to pop back to the main Page.
|
||
|
ref.listen<DeviceNode?>(currentDeviceProvider, (previous, next) {
|
||
|
Navigator.of(context).pop(false);
|
||
|
});
|
||
|
|
||
|
final label = fingerprint.label ?? 'Unnamed (ID: ${fingerprint.id})';
|
||
|
|
||
|
return ResponsiveDialog(
|
||
|
title: const Text('Delete fingerprint'),
|
||
|
child: Column(
|
||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||
|
children: [
|
||
|
const Text('This will delete the fingerprint from your YubiKey.'),
|
||
|
Text('Fingerprint: $label'),
|
||
|
]
|
||
|
.map((e) => Padding(
|
||
|
child: e,
|
||
|
padding: const EdgeInsets.symmetric(vertical: 8.0),
|
||
|
))
|
||
|
.toList(),
|
||
|
),
|
||
|
actions: [
|
||
|
TextButton(
|
||
|
onPressed: () async {
|
||
|
await ref
|
||
|
.read(fingerprintProvider(device.path).notifier)
|
||
|
.deleteFingerprint(fingerprint);
|
||
|
Navigator.of(context).pop(true);
|
||
|
ScaffoldMessenger.of(context).showSnackBar(
|
||
|
const SnackBar(
|
||
|
content: Text('Fingerprint deleted'),
|
||
|
duration: Duration(seconds: 2),
|
||
|
),
|
||
|
);
|
||
|
},
|
||
|
child: const Text('Delete'),
|
||
|
),
|
||
|
],
|
||
|
);
|
||
|
}
|
||
|
}
|