1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-14 07:13:33 +00:00

Reusing App.xaml.cs Navigation for the Android RedirectPage

Some other cleanup and changes
This commit is contained in:
Dinis Vieira
2023-12-16 15:18:07 +00:00
parent da0866cc85
commit e39898bba6
5 changed files with 28 additions and 110 deletions

View File

@@ -96,8 +96,9 @@ namespace Bit.App
if (Options != null && (Options.FromAutofillFramework || Options.Uri != null || Options.OtpData != null || Options.CreateSend != null)) //"Internal" Autofill and Uri/Otp/CreateSend
{
_autofillWindow = new Window(new NavigationPage(new AndroidExtSplashPage(Options)));
_autofillWindow = new Window(new NavigationPage(new AndroidNavigationRedirectPage()));
CurrentWindow = _autofillWindow;
_isResumed = true;
return CurrentWindow;
}