Open Settings App from another App in iOS - React Native

后端 未结 9 1291
予麋鹿
予麋鹿 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:26

    Adding an answer that worked for me and is easy to apply.

    openSettings function in @react-native-community/react-native-permissions works for both iOS and Android.

    Calling openSettings function will direct the user to the settings page of your app.

    import { openSettings } from 'react-native-permissions';
    openSettings();
    

提交回复
热议问题