private async void Search_Clicked(object sender, EventArgs e) { if (DoOnce()) { var page = new CiphersPage(_vm.Filter, _vm.FolderId != null, _vm.CollectionId != null, _vm.Type != null); await Navigation.PushModalAsync(new NavigationPage(page), false); } }
private async void Search_Clicked(object sender, EventArgs e) { await _accountListOverlay.HideAsync(); if (DoOnce()) { var page = new CiphersPage(_vm.Filter, _vm.MainPage ? null : _vm.PageTitle, deleted: _vm.Deleted); await Navigation.PushModalAsync(new NavigationPage(page)); } }
private void Search_Clicked(object sender, System.EventArgs e) { var page = new CiphersPage(null, autofillUrl: _vm.Uri); Application.Current.MainPage = new NavigationPage(page); _platformUtilsService.ShowToast("info", null, string.Format(AppResources.BitwardenAutofillServiceSearch, _vm.Name), new System.Collections.Generic.Dictionary <string, object> { ["longDuration"] = true }); }
private void Search_Clicked(object sender, System.EventArgs e) { var page = new CiphersPage(null, autofillUrl: _vm.Uri); Application.Current.MainPage = new NavigationPage(page); }