react-native-app-store-review
Version:
Rate on app store inside your app
17 lines (11 loc) • 386 B
JavaScript
import { NativeModules } from 'react-native';
const { RNAppStoreReview } = NativeModules;
class AppStoreReview {
static requestReview(appIdentifier) {
if (!RNAppStoreReview) {
return console.error('RNAppStoreReview library seems to be not linked to your project...');
}
return RNAppStoreReview.requestReview(appIdentifier);
}
}
export default AppStoreReview;