añadido generador de imagenes

This commit is contained in:
2026-05-17 15:45:52 +02:00
parent b7b33bdb52
commit 61c1ab8de7
18 changed files with 145 additions and 71 deletions
+5 -5
View File
@@ -48,8 +48,8 @@ class LocalVaultService {
if (supported || canCheck) {
final bool didAuthenticate = await _localAuth.authenticate(
localizedReason:
'Autentícate para acceder a la llave de encriptación',
biometricOnly: false,
'Toca el sensor de huellas digitales',
biometricOnly: true,
sensitiveTransaction: true,
persistAcrossBackgrounding: false,
);
@@ -131,8 +131,8 @@ class LocalVaultService {
if (supported || canCheck) {
final bool didAuthenticate = await _localAuth.authenticate(
localizedReason: 'Configura biometría para proteger la llave',
biometricOnly: false,
localizedReason: 'Toca el sensor de huellas digitales',
biometricOnly: true,
sensitiveTransaction: true,
persistAcrossBackgrounding: false,
);
@@ -185,7 +185,7 @@ class LocalVaultService {
// Prefer biometric-only authentication for activation to ensure the
// user sets up biometric unlocking (no device credential fallback).
final bool didAuthenticate = await _localAuth.authenticate(
localizedReason: 'Autentícate para habilitar biometría',
localizedReason: 'Toca el sensor de huellas digitales',
biometricOnly: true,
sensitiveTransaction: true,
persistAcrossBackgrounding: false,