app_review_plus 2.3.1+1 copy "app_review_plus: ^2.3.1+1" to clipboard
app_review_plus: ^2.3.1+1 copied to clipboard

Request and Write Reviews and Open Store Listing for Android and iOS in Flutter. Fork by Innim.

Fork of Flutter Community: app_review with updated dependencies.

app_review

app_review_plus #

alt text

Online Demo: https://fluttercommunity.github.io/app_review/

Description #

Flutter Plugin for Requesting and Writing Reviews in Google Play and the App Store. Apps have to be published for the app to be found correctly.

How To Use #

It's important to note that the App ID must match the App ID in Google Play and iTunes Connect. This can be changed in the Info.plist on iOS and app/build.gradle on Android. You will use this App ID for other services like Firebase, Admob and publishing the app.

Android

Opens In App Review but only if Play Services are installed on the device and the App is downloaded through the Play Store. Check out the official documentation.

iOS

iOS manages the pop-up requesting review within an app. You can call the code through AppReview.requestReview and if the user has "rate in apps" turned on, iOS will send "the request for the review" pop up. This is the required way for requesting reviews after iOS 10.3.

In debug mode it will always display. In apps through TestFlight, the AppReview.requestReview does nothing.

import 'dart:io';
import 'package:app_review/app_review_plus.dart';
import 'package:flutter/material.dart';

  @override
  void initState() {
    super.initState();
    if (Platform.isIOS) {
      AppReview.requestReview.then((onValue) {
        print(onValue);
      });
    }
  }

What is onValue value? #

Just a sanity check to make sure there were no errors.

Android #

You could store a timestamp to know when to call again.

iOS #

It doesn't really matter.

1
likes
135
pub points
78%
popularity

Publisher

verified publisherinnim.ru

Request and Write Reviews and Open Store Listing for Android and iOS in Flutter. Fork by Innim.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, http, package_info_plus, url_launcher

More

Packages that depend on app_review_plus