如何在 flutter 中直接从 Play 商店创建这种类型的应用内评分?

How to create this type of in app rating directly from play store in flutter?

如何在 flutter 中创建来自 google 的此类评级?

备注 我不想打开 Play 商店然后评价我的应用我想要这样的对话框来评价我的应用

in_app_review 包非常适合这个

您只需要

import 'package:in_app_review/in_app_review.dart';

final InAppReview inAppReview = InAppReview.instance;

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

查看官方文档以获得更好的理解