2

I was looking at https://facebook.github.io/react-native/docs/netinfo.html and appears that we do get a flag of either "cell" for iOS or "MOBILE" for Android, though is there any way to differentiate between Edge vs 3G vs LTE?

Jeff Chew
  • 167
  • 9

1 Answers1

1

My guess is that you will have to go to the native side of things. Here you have examples for iOS and Android. The binding to React Native is rather easy, and you can find some help on the documentation.

martinarroyo
  • 9,389
  • 3
  • 38
  • 75
  • Thank you for this! I'm surprised that there isn't already a module available for this but this doesn't seem terrible setting up. – Jeff Chew Jun 16 '17 at 12:25