All Projects → fluttercommunity → App_review

fluttercommunity / App_review

Licence: mit
App Review - Request and Write Reviews and Open Store Listing for Android and iOS in Flutter. Maintainer: @rodydavis

Programming Languages

dart
5743 projects

Projects that are alternatives of or similar to App review

React Native In App Review
The Google Play In-App Review API, App store rating API lets you prompt users to submit Play Store or App store ratings and reviews without the inconvenience of leaving your app or game.
Stars: ✭ 175 (-17.84%)
Mutual labels:  appstore, rating
Launch review
A Flutter plugin to assist in leaving user reviews/ratings in the Google Play Store. Supports both Android and iOS.
Stars: ✭ 98 (-53.99%)
Mutual labels:  appstore, flutter-plugin
Flutter rating bar
A simple ratingbar for flutter which also include a rating bar indicator, supporting any fraction of rating.
Stars: ✭ 211 (-0.94%)
Mutual labels:  flutter-plugin, rating
Androidrate
AndroidRate is a library to help you promote your Android app by prompting users to rate the app after using it for a few days.
Stars: ✭ 117 (-45.07%)
Mutual labels:  appstore, rating
React Native Store Review
Rate on App/Play Store directly in your React Native app
Stars: ✭ 437 (+105.16%)
Mutual labels:  appstore, rating
Ratemyapp
This plugin allows to kindly ask users to rate your app if custom conditions are met (eg. install time, number of launches, etc...).
Stars: ✭ 143 (-32.86%)
Mutual labels:  flutter-plugin, rating
Ultratabsaver
The open source Tab Manager Extension for Safari.
Stars: ✭ 178 (-16.43%)
Mutual labels:  appstore
Flutter Credit Card Input Form
Flutter Credit Card Input form
Stars: ✭ 201 (-5.63%)
Mutual labels:  flutter-plugin
Rating
Laravel Eloquent Rating allows you to assign ratings to any model.
Stars: ✭ 175 (-17.84%)
Mutual labels:  rating
Opengit flutter
OpenGit基于Flutter的Github客户端,支持Android和iOS。项目中涉及到BloC、Redux、国际化、多主题以及Github相关信息的查看等。
Stars: ✭ 173 (-18.78%)
Mutual labels:  flutter-plugin
Flutter speed dial
Flutter plugin to implement a Material Design Speed Dial
Stars: ✭ 206 (-3.29%)
Mutual labels:  flutter-plugin
Plugins
Plugins for Flutter maintained by the Flutter team
Stars: ✭ 14,956 (+6921.6%)
Mutual labels:  flutter-plugin
Flutter crashlytics
📦 Flutter plugin for Crashlytics integration
Stars: ✭ 193 (-9.39%)
Mutual labels:  flutter-plugin
Inapppurchase
A Simple and Lightweight framework for In App Purchase
Stars: ✭ 202 (-5.16%)
Mutual labels:  appstore
R upgrade
🆙🚀 Flutter application upgrade / download Plug-in (with notice bar progress), supports full upgrade, hot update and incremental upgrade
Stars: ✭ 177 (-16.9%)
Mutual labels:  flutter-plugin
Flutterexampleapps
[Example APPS] Basic Flutter apps, for flutter devs.
Stars: ✭ 15,950 (+7388.26%)
Mutual labels:  flutter-plugin
Packages.flutter
👨‍💻 Plugins and packages for Flutter framework
Stars: ✭ 173 (-18.78%)
Mutual labels:  flutter-plugin
Android Studio Plugins
This is a list of all awesome and useful android studio plugins.
Stars: ✭ 2,186 (+926.29%)
Mutual labels:  flutter-plugin
Geolocation
Flutter geolocation plugin for Android and iOS.
Stars: ✭ 205 (-3.76%)
Mutual labels:  flutter-plugin
Flutter spinkit
✨ A collection of loading indicators animated with flutter. Heavily Inspired by http://tobiasahlin.com/spinkit.
Stars: ✭ 2,411 (+1031.92%)
Mutual labels:  flutter-plugin

Flutter Community: app_review

Buy Me A Coffee Donate github pages GitHub stars

app_review

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.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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].