when i use react-native-contacts , the list doesn't appear alphabetic names any solution about this?
@luism3861 sort in application code after you load the contacts
contacts.sort((a, b) => a.first_name.toLowerCase() < b.first_name.toLowerCase());
Most helpful comment
@luism3861 sort in application code after you load the contacts