how can i create this type of rating provide from google in flutter ?
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: