I tried launching the Play Store, after tapping the "RATE" button displayed by showRateDialog, but instead of launching the Google Play Store, nothing shows up.
Here is a snippet of code:
_rateMyApp.showRateDialog(
context,
listener: (button) {
switch (button) {
case RateMyAppDialogButton.rate:
print('Launch store');
_rateMyApp.launchStore().then((result) {
print('Result $result');
});
break;
default:
}
return true;
},
);
I already provided the app id to the googlePlayIdentifier argument, at the point of instantiating _rateMyApp.
print('Result $result');, prints Result: LaunchStoreResult.storeOpened, but the Play Store does not come up.
I tried launching the Play Store, after tapping the "RATE" button displayed by
showRateDialog, but instead of launching the Google Play Store, nothing shows up.Here is a snippet of code:
I already provided the app id to the
googlePlayIdentifierargument, at the point of instantiating_rateMyApp.print('Result $result');, printsResult: LaunchStoreResult.storeOpened, but the Play Store does not come up.