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

A Flutter plugin to assist in leaving user reviews/ratings in Google Play Store and Apple App Store.

launch_review_latest #

pub package

A Flutter plugin to assist in leaving user reviews/ratings in Google Play Store and Apple App Store.

This package is update for launch_review package

NOTE: Please feel free to send a PR to add more functionalities.

iOS #

For iOS 9 and above, your Info.plist file MUST have the following:

<key>LSApplicationQueriesSchemes</key>
<array>
        <string>itms-beta</string>
        <string>itms</string>
</array>

Usage #

To use this plugin, add launch_review_latest as a dependency in your pubspec.yaml file.

Example #

Import the library via

import 'package:launch_review_latest/launch_review_latest.dart'; 

Then invoke the static launch method of LaunchReviewLatest anywhere in your Dart code. If no arguments are provided, it will consider the current package.

LaunchReviewLatest.launch();

To open the App Store page for any other applications, you can pass the app Id.

LaunchReviewLatest.launch(androidAppId: "com.mohamednagdy.allquran",
                    iOSAppId: "6740764793");

iOS Specifics #

Set writeReview to false to only show the app store page. Used only in iOS.

LaunchReviewLatest.launch(writeReview: false,iOSAppId: "585027354");
2
likes
160
points
1.44k
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter plugin to assist in leaving user reviews/ratings in Google Play Store and Apple App Store.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on launch_review_latest

Packages that implement launch_review_latest