1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-05 23:53:33 +00:00

fix gap in background color application resulting in flashing during transitions, part 2 (#1595)

This commit is contained in:
Matt Portune
2021-10-18 09:56:20 -04:00
committed by Matt Portune
parent 8c4f5c3378
commit 6f3c5be598
2 changed files with 2 additions and 2 deletions

View File

@@ -161,7 +161,7 @@ namespace Bit.App.Pages
if (DoOnce())
{
var page = new SendsPage(_vm.Filter, _vm.Type != null);
await Navigation.PushModalAsync(new NavigationPage(page), false);
await Navigation.PushModalAsync(new NavigationPage(page));
}
}

View File

@@ -234,7 +234,7 @@ namespace Bit.App.Pages
{
var page = new CiphersPage(_vm.Filter, _vm.FolderId != null, _vm.CollectionId != null,
_vm.Type != null, deleted: _vm.Deleted);
await Navigation.PushModalAsync(new NavigationPage(page), false);
await Navigation.PushModalAsync(new NavigationPage(page));
}
}