How to open a native iOS calendar from Mx app?

1
Hi guys I am wondring how I can open the native iOS calendar from a microflow or another Mx app (from within MxApp). I see that there are some plugins available making this possible (https://stackoverflow.com/questions/29559072/how-to-open-the-native-calendar-app-of-the-device-in-phonegap-cordova)....but I have not that much experience with this. Any one experience with it?   Or should I use the calendar widget on mobile (which I dislike over the native iOS app)?
asked
1 answers
2

You cannot use a microflow to do such task. Instead, you can use this plugin

 https://www.npmjs.com/package/cordova-plugin-calendar 

which enables you to find a specific event within the iOS calendar. To do this, you can create a custom widget to make use of the plugin (have a look on the app store if it already exist, if not you can always create your own using a boilerplate), and deploy a phonegap app for your application.

answered