mirror of
https://github.com/bitwarden/mobile.git
synced 2024-11-22 11:35:21 +01:00
formatting
This commit is contained in:
parent
a4d785258e
commit
9eba3064a7
@ -38,11 +38,13 @@ namespace Bit.App.Pages
|
||||
Android: "fingerprint.png",
|
||||
Windows: "smile.png");
|
||||
var biometricText = Helpers.OnPlatform(
|
||||
iOS: _deviceInfoService.HasFaceIdSupport ? AppResources.UseFaceIDToUnlock : AppResources.UseFingerprintToUnlock,
|
||||
iOS: _deviceInfoService.HasFaceIdSupport ?
|
||||
AppResources.UseFaceIDToUnlock : AppResources.UseFingerprintToUnlock,
|
||||
Android: AppResources.UseFingerprintToUnlock,
|
||||
Windows: AppResources.UseWindowsHelloToUnlock);
|
||||
var biometricTitle = Helpers.OnPlatform(
|
||||
iOS: _deviceInfoService.HasFaceIdSupport ? AppResources.VerifyFaceID : AppResources.VerifyFingerprint,
|
||||
iOS: _deviceInfoService.HasFaceIdSupport ?
|
||||
AppResources.VerifyFaceID : AppResources.VerifyFingerprint,
|
||||
Android: AppResources.VerifyFingerprint,
|
||||
Windows: AppResources.VerifyWindowsHello);
|
||||
|
||||
@ -103,8 +105,10 @@ namespace Bit.App.Pages
|
||||
}
|
||||
_lastAction = DateTime.UtcNow;
|
||||
|
||||
var fingerprintRequest = new AuthenticationRequestConfiguration(
|
||||
_deviceInfoService.HasFaceIdSupport ? AppResources.FaceIDDirection : AppResources.FingerprintDirection)
|
||||
var direction = _deviceInfoService.HasFaceIdSupport ?
|
||||
AppResources.FaceIDDirection : AppResources.FingerprintDirection;
|
||||
|
||||
var fingerprintRequest = new AuthenticationRequestConfiguration(direction)
|
||||
{
|
||||
AllowAlternativeAuthentication = true,
|
||||
CancelTitle = AppResources.Cancel,
|
||||
|
Loading…
Reference in New Issue
Block a user