I have successfully integrated the Contacts native plugin from Ionic 3 into my app. While it is functioning properly, I am facing an issue with implementing it within the app's UI. Currently, the contact list loads outside the app and only returns to the UI after a contact has been selected. Is there a way to keep it within the app's interface? Or is this limitation due to it being a native feature of the phone?
ionViewDidEnter() {
if (this.platform.is('cordova')) {
this.contacts.pickContact().then(response => {
});
}
}
Similar to how this was achieved in the Zoiper app: I would like to replicate this functionality using Ionic 3. Is there a way to achieve this?