You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
when i rate app(select stars), i think that onRatingChanged will fire and i can understand the user rate and conditionally do something
_rateMyApp.showStarRateDialog(
context,
title: 'Rate this app',
message: 'You like this app ? Then take a little bit of your time to leave a rating :',
onRatingChanged: (stars) {
print('stars - ', stars)
},
ignoreIOS: false,
starRatingOptions: StarRatingOptions(),
);
but onRatingChanged doesn't fire when i rate application, or this method will fire only after click on submit button(which disabled in developer mode)?
The text was updated successfully, but these errors were encountered:
You set ignoreIOS to false (default is false anyway) and you can test. The only caveat is that you cannot click on "Review" (but it shouldn't be a problem for you as this button will work when you're going to release your app on the App Store).
Describe the bug
when i rate app(select stars), i think that onRatingChanged will fire and i can understand the user rate and conditionally do something
but onRatingChanged doesn't fire when i rate application, or this method will fire only after click on submit button(which disabled in developer mode)?
The text was updated successfully, but these errors were encountered: