You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 8, 2021. It is now read-only.
Hi,
I'm using v1.0.5.
I'm not able to filter contacts like you mention in README.
var contacts = await Plugin.ContactService.CrossContactService.Current.GetContactListAsync(x=>x.Emails.Count > 0);IContactService does not include any parameter for GetContactList methods :
namespace Plugin.ContactService { public interface IContactService { // Gets contacts in main thread !!!NOT RECOMMENDED IList<Contact> GetContactList(); // Gets contact in an awaitable background task Task<IList<Contact>> GetContactListAsync(); } }Therefore, I'm obliged to get all contacts from phone before display... and this can take a lot of time when user as more than 500 contacts...
What can I do to enable filtering ?