mirror of
https://github.com/bitwarden/mobile
synced 2026-01-05 10:03:26 +00:00
app options for add/edit page
This commit is contained in:
@@ -26,7 +26,7 @@ namespace Bit.iOS
|
||||
|
||||
FFImageLoading.Forms.Platform.CachedImageRenderer.Init();
|
||||
|
||||
LoadApplication(new App.App());
|
||||
LoadApplication(new App.App(null));
|
||||
|
||||
return base.FinishedLaunching(app, options);
|
||||
}
|
||||
|
||||
@@ -233,6 +233,21 @@ namespace Bit.iOS.Services
|
||||
return context.BiometryType == LABiometryType.FaceId;
|
||||
}
|
||||
|
||||
public bool SupportsNfc()
|
||||
{
|
||||
return CoreNFC.NFCNdefReaderSession.ReadingAvailable;
|
||||
}
|
||||
|
||||
public bool SupportsCamera()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
public bool SupportsAutofillService()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
private void ImagePicker_FinishedPickingMedia(object sender, UIImagePickerMediaPickedEventArgs e)
|
||||
{
|
||||
if(sender is UIImagePickerController picker)
|
||||
|
||||
Reference in New Issue
Block a user