We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba4068e commit 2f31339Copy full SHA for 2f31339
packages/rn-tester/android/app/src/main/java/com/facebook/react/uiapp/RNTesterActivity.kt
@@ -66,6 +66,15 @@ internal class RNTesterActivity : ReactActivity() {
66
fullyDrawnReporter.addReporter()
67
maybeUpdateBackgroundColor()
68
69
+ reactDelegate?.reactHost?.let { reactHost ->
70
+ val devMenuConfiguration = DevMenuConfiguration(
71
+ isDevMenuEnabled = true,
72
+ isShakeGestureEnabled = true,
73
+ areKeyboardShortcutsEnabled = true,
74
+ )
75
+ reactHost.setDevMenuConfiguration(devMenuConfiguration)
76
+ }
77
+
78
// register insets listener to update margins on the ReactRootView to avoid overlap w/ system
79
// bars
80
reactDelegate?.reactRootView?.let { rootView ->
0 commit comments