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
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();