Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/react-native/ReactAndroid/api/ReactAndroid.api
Original file line number Diff line number Diff line change
Expand Up @@ -3319,14 +3319,14 @@ public class com/facebook/react/uimanager/IllegalViewOperationException : com/fa
public final fun getView ()Landroid/view/View;
}

public final class com/facebook/react/uimanager/JSPointerDispatcher {
public class com/facebook/react/uimanager/JSPointerDispatcher {
public fun <init> (Landroid/view/ViewGroup;)V
public final fun handleMotionEvent (Landroid/view/MotionEvent;Lcom/facebook/react/uimanager/events/EventDispatcher;Z)V
public final fun onChildEndedNativeGesture ()V
public final fun onChildStartedNativeGesture (Landroid/view/View;Landroid/view/MotionEvent;Lcom/facebook/react/uimanager/events/EventDispatcher;)V
}

public final class com/facebook/react/uimanager/JSTouchDispatcher {
public class com/facebook/react/uimanager/JSTouchDispatcher {
public fun <init> (Landroid/view/ViewGroup;)V
public final fun handleTouchEvent (Landroid/view/MotionEvent;Lcom/facebook/react/uimanager/events/EventDispatcher;)V
public final fun handleTouchEvent (Landroid/view/MotionEvent;Lcom/facebook/react/uimanager/events/EventDispatcher;Lcom/facebook/react/bridge/ReactContext;)V
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import com.facebook.react.uimanager.events.PointerEventHelper.EVENT
* onHoverEvent, onInterceptHoverEvent. It will correctly find the right view to handle the touch
* and also dispatch the appropriate event to JS
*/
public class JSPointerDispatcher(private val rootViewGroup: ViewGroup) {
public open class JSPointerDispatcher(private val rootViewGroup: ViewGroup) {

private var lastHitPathByPointerId: MutableMap<Int, List<ViewTarget>>? = null
private var lastEventCoordinatesByPointerId: MutableMap<Int, FloatArray>? = null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import com.facebook.react.uimanager.events.TouchEventType
* need to call handleTouchEvent from onTouchEvent and onInterceptTouchEvent. It will correctly find
* the right view to handle the touch and also dispatch the appropriate event to JS
*/
public class JSTouchDispatcher(private val viewGroup: ViewGroup) {
public open class JSTouchDispatcher(private val viewGroup: ViewGroup) {
private var targetTag = -1
private val targetCoordinates = FloatArray(2)
private var childIsHandlingNativeGesture = false
Expand Down
Loading