Hi,
Ionic 4 is the evergreen dream like Meteor 1.7. Its compatible with any JavaScript language available whereas lower versions are compatible with Angular JS only.
We just need to include the script tag for ionic and that’s it. After that we can handle data using Each Loops in Blaze like we use it. I find it easier way to create cordova apps
<link href="https://unpkg.com/@ionic/core@latest/css/ionic.bundle.css" rel="stylesheet" media="screen">
<script src="https://unpkg.com/@ionic/core@latest/dist/ionic.js"></script>
<script src="https://unpkg.com/ionicons@latest/dist/ionicons.js"></script>
Also, AFAIK ionic 4 uses capacitor not cordova for compilation process but while running the apps on devices it uses cordova commands.
So, is there anyone using it to create Cordova based ionic apps? Is there any drawback of using this?
I find it easier way to create cordova apps whats your opinion