4

How to add "Rate the app" Component in React Native? I want to implement the Rating feature in my application.

vijayst
  • 20,359
  • 18
  • 69
  • 113
ALoK VeRMa
  • 91
  • 6
  • 1
    Possible duplicate of [How to make a "Rate this app" link in React Native app?](http://stackoverflow.com/questions/35612383/how-to-make-a-rate-this-app-link-in-react-native-app) – Kevin Cooper Apr 19 '17 at 15:44

3 Answers3

6

You can use Linking:

Linking.openURL('itms://itunes.apple.com/us/app/apple-store/myiosappid?mt=64')
JFAP
  • 3,617
  • 1
  • 24
  • 25
1

You can use Linking like that

Linking.openURL('itms-apps://itunes.apple.com/app/id111111111')

where 111111111 is ur appId

Developer
  • 422
  • 6
  • 16
0

There is a package for that now

react-native-in-app-review

Thanhal P A
  • 4,097
  • 3
  • 18
  • 38