Launch Review
Assists in leaving user reviews/ratings in the App Stores.
- Launches the platform's App Store page for the current app in order for the user to leave a review.
 - On iOS (10.3 and above) invokes the native in-app rating dialog which allows a user to rate your app without needing to open the App Store.
 
https://github.com/dpa99c/cordova-launch-review
Stuck on a Cordova issue?
If you're building a serious project, you can't afford to spend hours troubleshooting. Ionicβs experts offer premium advisory services for both community plugins and premier plugins.
Installation
- Capacitor
 - Cordova
 - Enterprise
 
$ npm install cordova-launch-review 
$ npm install @awesome-cordova-plugins/launch-review 
$ ionic cap sync
$ ionic cordova plugin add cordova-launch-review 
$ npm install @awesome-cordova-plugins/launch-review 
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. Β Learn More or if you're interested in an enterprise version of this plugin Contact Us
Supported Platforms
- Android
 - iOS
 
Usage
React
Learn more about using Ionic Native components in React
Angular
import { LaunchReview } from '@awesome-cordova-plugins/launch-review/ngx';
constructor(private launchReview: LaunchReview) { }
...
this.launchReview.launch()
  .then(() => console.log('Successfully launched store app'));
if(this.launchReview.isRatingSupported()){
  this.launchReview.rating()
    .then(() => console.log('Successfully launched rating dialog'));
}