fluttercommunity / app_review

App Review - Request and Write Reviews and Open Store Listing for Android and iOS in Flutter. Maintainer: @rodydavis
https://fluttercommunity.github.io/app_review/
MIT License
329 stars 108 forks source link

Out of date HTTP package #84

Closed nicolasvahidzein closed 7 months ago

nicolasvahidzein commented 7 months ago

Because XXX depends on app_review ^2.1.2+1 which depends on http ^0.13.0-nullsafety.0, http ^0.13.0-nullsafety.0 is required. So, because zandu_mobile_admin depends on http ^1.1.0, version solving failed. exit code 1

toco1001 commented 7 months ago

@nicolasvahidzein Recommend to use in_app_review.

Almost same way to use.

import 'package:in_app_review/in_app_review.dart';

final InAppReview inAppReview = InAppReview.instance;

if (await inAppReview.isAvailable()) {
    inAppReview.requestReview();
}
nicolasvahidzein commented 7 months ago

That was my conclusion too. Thank you so much.