mirror of
https://github.com/bitwarden/mobile
synced 2025-12-12 14:23:26 +00:00
check app options ios extension on nfc check (#933)
This commit is contained in:
@@ -291,7 +291,7 @@ namespace Bit.iOS.Autofill
|
||||
private void LaunchLoginFlow()
|
||||
{
|
||||
var loginPage = new LoginPage();
|
||||
var app = new App.App(new AppOptions { EmptyApp = true });
|
||||
var app = new App.App(new AppOptions { IosExtension = true });
|
||||
ThemeManager.SetTheme(false, app.Resources);
|
||||
ThemeManager.ApplyResourcesToPage(loginPage);
|
||||
if (loginPage.BindingContext is LoginPageViewModel vm)
|
||||
@@ -311,7 +311,7 @@ namespace Bit.iOS.Autofill
|
||||
private void LaunchTwoFactorFlow()
|
||||
{
|
||||
var twoFactorPage = new TwoFactorPage();
|
||||
var app = new App.App(new AppOptions { EmptyApp = true });
|
||||
var app = new App.App(new AppOptions { IosExtension = true });
|
||||
ThemeManager.SetTheme(false, app.Resources);
|
||||
ThemeManager.ApplyResourcesToPage(twoFactorPage);
|
||||
if (twoFactorPage.BindingContext is TwoFactorPageViewModel vm)
|
||||
|
||||
Reference in New Issue
Block a user