expo-dev-menu
Version:
Expo/React Native module with the developer menu.
12 lines (7 loc) • 304 B
text/typescript
import { AppRegistry } from 'react-native';
import { enableScreens } from 'react-native-screens';
import { App } from './App';
// Hide this target from the JS inspector
globalThis.__expo_hide_from_inspector__ = 'expo-dev-menu';
enableScreens(false);
AppRegistry.registerComponent('main', () => App);