Exemplo n.º 1
0
 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);
     }
 }
Exemplo n.º 2
0
        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));
            }
        }
Exemplo n.º 3
0
        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
            });
        }
Exemplo n.º 4
0
        private void Search_Clicked(object sender, System.EventArgs e)
        {
            var page = new CiphersPage(null, autofillUrl: _vm.Uri);

            Application.Current.MainPage = new NavigationPage(page);
        }