in_app_review 0.0.1 in_app_review: ^0.0.1 copied to clipboard
Show the In-App Review popup on Android & IOS
in_app_review #
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!