Open Settings App from another App in iOS - React Native

后端 未结 9 1292
予麋鹿
予麋鹿 2020-12-29 02:40

I\'m going through the docs in React Native and can only find navigating to external links from the app I am in.

I want to be able to navigate to the Settings

9条回答
  •  一生所求
    2020-12-29 03:36

    You can deep-link referencing the settings's index like so:

        Linking.openURL('app-settings:{index}')
    

    For example Linking.openURL('app-settings:{3}') would open the Bluetooth settings.

提交回复
热议问题