Works in debug mode and does not work in production mode on ios
Closed this issue · 1 comments
ziqq commented
I tested rate my app and catch success in debug but dosen't in production.
Flutter 3.3.2
Dart 2.18.1
Future<bool> showRating() async {
final bool isAvailable = await _inAppReview.isAvailable();
if (isAvailable) {
_inAppReview.requestReview();
} else {
_inAppReview.openStoreListing(appStoreId: 'my_app_store_id');
}
}