britannio / in_app_review

A Flutter plugin for showing the In-App Review/System Rating pop up on Android, IOS, and MacOS. It makes it easy for users to rate your app.
295 stars 76 forks source link

[iOS] Rating Dialog is unresponsive and can't be closed #107

Open JonasJW opened 7 months ago

JonasJW commented 7 months ago

The preview dialog is showing but is unresponsive, nothing happens when I click on a start or the "Not Now" Button. Clicking outside the dialog does not close the dialog. The only way getting out of the dialog seems to close and reopen the app.

This happens in production. I would include a screen recording but there is nothing to see, as my taps are not recorded and the dialog does not do anything.

I don't know what information I can provide to reproduce this, following is the code I use to show the dialog

final available = await inAppReview.isAvailable();
Navigator.pop(context);
if (available) {
  inAppReview.requestReview();
} else {
  throw "not available";
}

I'm using in_app_review: ^2.0.8, only tested this behavior on iOS so far