mirror of
https://github.com/bitwarden/mobile
synced 2025-12-18 09:13:15 +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:
@@ -93,7 +93,7 @@ namespace Bit.App.Pages
|
||||
|
||||
if(saveResult.Succeeded)
|
||||
{
|
||||
await Navigation.PopModalAsync();
|
||||
await Navigation.PopForDeviceAsync();
|
||||
_userDialogs.Toast("Folder updated.");
|
||||
_googleAnalyticsService.TrackAppEvent("EditedFolder");
|
||||
}
|
||||
@@ -147,7 +147,7 @@ namespace Bit.App.Pages
|
||||
|
||||
if(deleteTask.Succeeded)
|
||||
{
|
||||
await Navigation.PopModalAsync();
|
||||
await Navigation.PopForDeviceAsync();
|
||||
_userDialogs.Toast("Folder deleted.");
|
||||
}
|
||||
else if(deleteTask.Errors.Count() > 0)
|
||||
|
||||
Reference in New Issue
Block a user