Search code examples
flutterpluginscontacts

flutter plugin is slow


I'm using contacts_service 0.4.6 plugin to load phoneBook contacts into my flutter app, but it is very slow, how can I increase the contacts loading speed? or is there any speeder plugin to load contacts?


Solution

  • Its reason for you may be load all the details included avatar image(user image) so, If you dont needed then load like this way,

    var contacts = await PhoneBook.ContactsService.getContacts( 
        withThumbnails: false,
        photoHighResolution: false, 
      );
    

    This load faster to contact book,as compare to normal way