react_native / 0.66 / devsettings.html /

DevSettings

The DevSettings module exposes methods for customizing settings for developers in development.

Reference

Methods

addMenuItem()

static addMenuItem(title, handler)

Add a custom menu item to the developer menu.

Parameters:

Name Type
title
Required
string
handler
Required
function

Example:

DevSettings.addMenuItem('Show Secret Dev Screen', () => {
  Alert.alert('Showing secret dev screen!');
});

reload()

static reload()

Reload the application. Can be invoked directly or on user interaction.

Example:

<Button title="Reload" onPress={() => DevSettings.reload()} />

© 2022 Facebook Inc.
Licensed under the Creative Commons Attribution 4.0 International Public License.
https://reactnative.dev/docs/devsettings