Reputation: 8623
I want to build an Angular + Ionic5 + capacitor app, and I found there are lots of splash screen approaches.
Which one should I use, is there any big difference between them?
Upvotes: 3
Views: 2529
Reputation: 53301
Ionic Native Splash Screen and Cordova Plugin Splash Screen are the same thing and they don't work with Capacitor, it's listed on the known incompatible plugins section.
If you check Ionic Native docs, it tells you to install cordova-plugin-splashscreen
, Ionic Native plugins are just wrappers around Cordova plugins so they are easier to use in projects that use typescript instead of javascript.
Upvotes: 1