-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
37 lines (32 loc) · 830 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import React from "react";
import { View, PanResponder, NativeModules, Platform } from "react-native";
const { RNDevmenuTrigger, DevMenu } = NativeModules;
const PlatformDevMenu = Platform.select({
ios: DevMenu,
android: RNDevmenuTrigger,
default: { show: () => {} }
});
const responder = PanResponder.create({
onStartShouldSetPanResponder: (evt, gestureState) => {
if (gestureState.numberActiveTouches === 3) {
PlatformDevMenu.show();
}
return false;
}
});
const withDevMenuTrigger = WrappedComponent => props => {
if (!__DEV__) {
return <WrappedComponent {...props} />;
}
return (
<View
style={{
flex: 1,
backgroundColor: null
}}
{...responder.panHandlers}>
<WrappedComponent {...props} />
</View>
);
};
export { withDevMenuTrigger };