in_app_review_flutter 1.0.0 copy "in_app_review_flutter: ^1.0.0" to clipboard
in_app_review_flutter: ^1.0.0 copied to clipboard

PlatformAndroid

A Flutter plugin for requesting and launching the In-App Review flow on Android and iOS. Supports checking availability and opening the store listing.

in_app_review_flutter #

A Flutter plugin for requesting and launching the In-App Review flow on Android and iOS. This plugin also supports checking availability and opening the store listing as a fallback.

Features #

  • Request In-App Review flow.
  • Check if the review flow is available.
  • Open the app's store listing (Play Store / App Store) directly.
  • Android support implemented.

Usage #

Import the package:

import 'package:in_app_review_flutter/in_app_review_flutter.dart';

Create an instance:

final InAppReviewFlutter inAppReview = InAppReviewFlutter();

Request Review #

To request the review flow:

// Check if review is available first (optional but recommended)
if (await inAppReview.isAvailable()) {
  await inAppReview.requestReview();
}

Open Store Listing #

To open the store listing directly (useful if in-app review is not available or quota is exceeded):

await inAppReview.openStoreListing();
0
likes
160
points
100
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter plugin for requesting and launching the In-App Review flow on Android and iOS. Supports checking availability and opening the store listing.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on in_app_review_flutter

Packages that implement in_app_review_flutter