Search Docs
1const handleOpenSettings = () => { 2 if (Platform.OS === 'ios') { 3 Linking.openURL('app-settings:') 4 } else { 5 Linking.openSettings() 6 } 7}