mirror of
https://github.com/bitwarden/mobile
synced 2025-12-10 05:13:31 +00:00
face id strings
This commit is contained in:
@@ -88,7 +88,8 @@ namespace Bit.App.Pages
|
||||
|
||||
if(FingerprintLock)
|
||||
{
|
||||
FingerprintButtonText = AppResources.UseFingerprintToUnlock; // TODO: FaceID text
|
||||
FingerprintButtonText = _deviceActionService.SupportsFaceId() ? AppResources.UseFaceIDToUnlock :
|
||||
AppResources.UseFingerprintToUnlock;
|
||||
var tasks = Task.Run(async () =>
|
||||
{
|
||||
await Task.Delay(500);
|
||||
|
||||
@@ -207,8 +207,8 @@ namespace Bit.App.Services
|
||||
{
|
||||
if(text == null)
|
||||
{
|
||||
text = AppResources.FingerprintDirection;
|
||||
// TODO: face id direction
|
||||
text = _deviceActionService.SupportsFaceId() ? AppResources.FaceIDDirection :
|
||||
AppResources.FingerprintDirection;
|
||||
}
|
||||
var fingerprintRequest = new AuthenticationRequestConfiguration(text)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user