
- App lists all contacts from the phone Contacts list and a contact can be added. The user can also call or send an sms to a contact.

- Install dependencies using
npm i
- To start the server on localhost://8100 type: 'ionic serve'
- function to load all contacts so they can be shown on-screen as a list.
loadContacts() {
let options = {
filter: '',
multiple: true,
hasPhoneNumber: true
};
this.contacts.find(['*'], options).then((contacts: Contact[]) => {
this.myContacts = contacts;
console.log('Contacts: ', contacts);
});
}
- User can call a contact or send them an sms.
- Status: Compiles and displays in simulator on 'ionic serve --devapp'. Needs to be installed on device to test it.
- To-do: Deploy to device and test.
- This project is licensed under the terms of the MIT license.