3

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

vijayst
  • 17,769
  • 16
  • 62
  • 107
ALoK VeRMa
  • 83
  • 6
  • 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

2 Answers2

6

You can use Linking:

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

You can use Linking like that

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

where 111111111 is ur appId

Developer
  • 412
  • 5
  • 16