Skip to content

📋 Ionic app to transfer contacts using Cordova plugins. Tutorial from the Ionic Academy

License

Notifications You must be signed in to change notification settings

AndrewJBateman/ionic-angular-contacts

Repository files navigation

⚡ Ionic Angular Contacts

GitHub repo size GitHub pull requests GitHub Repo stars GitHub last commit

📄 Table of contents

📚 General info

  • 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.

📷 Screenshots

Example screenshot

📶 Technologies

💾 Setup

  • Install dependencies using npm i
  • To start the server on localhost://8100 type: 'ionic serve'

💻 Code Examples

  • 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);
  });
}

🆒 Features

  • User can call a contact or send them an sms.

📋 Status & To-do list

  • 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.

👏 Inspiration

📁 License

  • This project is licensed under the terms of the MIT license.

✉️ Contact

About

📋 Ionic app to transfer contacts using Cordova plugins. Tutorial from the Ionic Academy

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published