You can use React Native Linking. Linking provides a common interface to interact with incoming and outgoing App links.

import { Platform } from 'react-native'

let isIOS = Platform.OS === 'ios'
if (isIOS) {
    Linking.openURL('app-settings:').catch(err= > console.log('error', err))
    // Linking.openURL('App-Prefs:MOBILE_DATA_SETTINGS_ID')
} else {
    Linking.openSettings()
}
Copy the code