I am working on react-native mobile app both ios and android. In my app, i need to use GPS location services. if location services turn off I need to automatically navigate app screen to platform location settings page. I can able to achieve this in android using NativeModules. Now I need to do this on ios also.
Android :
NativeModules.OpenSettings.openNetworkSettings(data => {
this.setState({
locationEnabled : false
})
});
I need help, to enable location services in ios.