Check if the device has the developer options enabled
npm install react-native-developer-options
import {
isDeveloperModeEnabled,
openDeveloperSettings,
} from 'react-native-developer-options';
// ...
const result = await isDeveloperModeEnabled();
if (result === true) {
openDeveloperSettings();
}
// ...
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
Made with create-react-native-library