mirror of
https://github.com/bitwarden/mobile
synced 2026-01-06 10:34:07 +00:00
Created device specific navigation push/pops in order to support non-modal navigation on android (so we get the back button in nav).
This commit is contained in:
@@ -56,7 +56,7 @@ namespace Bit.App
|
||||
}
|
||||
else
|
||||
{
|
||||
MainPage = new HomePage();
|
||||
MainPage = new ExtendedNavigationPage(new HomePage());
|
||||
}
|
||||
|
||||
MessagingCenter.Subscribe<Application, bool>(Current, "Resumed", async (sender, args) =>
|
||||
@@ -203,7 +203,7 @@ namespace Bit.App
|
||||
_googleAnalyticsService.TrackAppEvent("LoggedOut");
|
||||
_googleAnalyticsService.RefreshUserId();
|
||||
|
||||
Current.MainPage = new HomePage();
|
||||
Current.MainPage = new ExtendedNavigationPage(new HomePage());
|
||||
if(!string.IsNullOrWhiteSpace(logoutMessage))
|
||||
{
|
||||
_userDialogs.Toast(logoutMessage);
|
||||
|
||||
Reference in New Issue
Block a user