Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fluttercommunity/app_review
App Review - Request and Write Reviews and Open Store Listing for Android and iOS in Flutter. Maintainer: @rodydavis
https://github.com/fluttercommunity/app_review
android appstore flutter flutter-plugin googleplay ios rating
Last synced: 3 days ago
JSON representation
App Review - Request and Write Reviews and Open Store Listing for Android and iOS in Flutter. Maintainer: @rodydavis
- Host: GitHub
- URL: https://github.com/fluttercommunity/app_review
- Owner: fluttercommunity
- License: mit
- Created: 2018-05-04T18:31:57.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-10-29T15:00:31.000Z (2 months ago)
- Last Synced: 2024-12-21T15:02:10.647Z (10 days ago)
- Topics: android, appstore, flutter, flutter-plugin, googleplay, ios, rating
- Language: C++
- Homepage: https://fluttercommunity.github.io/app_review/
- Size: 10.9 MB
- Stars: 336
- Watchers: 10
- Forks: 122
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
[![Flutter Community: app_review](https://fluttercommunity.dev/_github/header/app_review)](https://github.com/fluttercommunity/community)
[![Buy Me A Coffee](https://img.shields.io/badge/Donate-Buy%20Me%20A%20Coffee-yellow.svg)](https://www.buymeacoffee.com/rodydavis)
[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WSH3GVC49GNNJ)
![github pages](https://github.com/fluttercommunity/app_review/workflows/github%20pages/badge.svg)
[![GitHub stars](https://img.shields.io/github/stars/fluttercommunity/app_review?color=blue)](https://github.com/fluttercommunity/app_review)
[![app_review](https://img.shields.io/pub/v/app_review.svg)](https://pub.dev/packages/app_review)# app_review
![alt text](https://github.com/fluttercommunity/app_review/blob/master/screenshots/IMG_0024.PNG)
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](https://developer.android.com/guide/playcore/in-app-review).#### 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.
``` dart
import 'dart:io';
import 'package:app_review/app_review.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.