File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
android/paper/src/main/java/com/swmansion/gesturehandler Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 7
7
import com .facebook .react .bridge .ReadableMap ;
8
8
import com .facebook .react .turbomodule .core .interfaces .TurboModule ;
9
9
import javax .annotation .Nonnull ;
10
+ import com .facebook .react .bridge .ReactMethod ;
10
11
11
12
public abstract class NativeRNGestureHandlerModuleSpec extends ReactContextBaseJavaModule implements TurboModule {
12
13
public static final String NAME = "RNGestureHandlerModule" ;
@@ -21,26 +22,34 @@ public NativeRNGestureHandlerModuleSpec(ReactApplicationContext reactContext) {
21
22
}
22
23
23
24
@ DoNotStrip
25
+ @ ReactMethod
24
26
public abstract void handleSetJSResponder (double tag , boolean blockNativeResponder );
25
27
26
28
@ DoNotStrip
29
+ @ ReactMethod
27
30
public abstract void handleClearJSResponder ();
28
31
29
32
@ DoNotStrip
33
+ @ ReactMethod
30
34
public abstract void createGestureHandler (String handlerName , double handlerTag , ReadableMap config );
31
35
32
36
@ DoNotStrip
37
+ @ ReactMethod
33
38
public abstract void attachGestureHandler (double handlerTag , double newView , double actionType );
34
39
35
40
@ DoNotStrip
41
+ @ ReactMethod
36
42
public abstract void updateGestureHandler (double handlerTag , ReadableMap newConfig );
37
43
38
44
@ DoNotStrip
45
+ @ ReactMethod
39
46
public abstract void dropGestureHandler (double handlerTag );
40
47
41
48
@ DoNotStrip
49
+ @ ReactMethod
42
50
public abstract boolean install ();
43
51
44
52
@ DoNotStrip
53
+ @ ReactMethod
45
54
public abstract void flushOperations ();
46
55
}
You can’t perform that action at this time.
0 commit comments