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 GitHub
parent 4ed7491116
commit 41098ff05b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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));
}
}