in_app_review 0.0.1 copy "in_app_review: ^0.0.1" to clipboard
in_app_review: ^0.0.1 copied to clipboard

outdated

Show the In-App Review popup on Android & IOS

in_app_review #

In-App Review Android Demo In-App Review IOS Demo

Description #

Flutter plugin that lets you show a system review pop up where users can leave a review for your app without needing to leave it.

Uses the In-App Review API on Android and the SKStoreReviewController on IOS

Usage #

final InAppReview inAppReview = InAppReview.instance;

if (await inAppReview.isAvailable()) {
    inAppReview.requestReview();
} else {
    inAppReview.openStoreListing(iOSAppStoreId: '<YOUR_APP_STORE_ID>')
}

Issues & pull requests are more than welcome!