Home > Back-end >  How to create this type of in app rating directly from play store in flutter?
How to create this type of in app rating directly from play store in flutter?

Time:10-28

how can i create this type of rating provide from google in flutter ? enter image description here

Note i don't want to open play store then rate my app i want dialog like this to rate my app

CodePudding user response:

in_app_review package works pretty good for this

All you just need to do is

import 'package:in_app_review/in_app_review.dart';

final InAppReview inAppReview = InAppReview.instance;

if (await inAppReview.isAvailable()) {
    inAppReview.requestReview();
}

Check official doc for better understanding

CodePudding user response:

There is an flutter package for it:

https://pub.dev/packages/in_app_review

  • Related