Skip to content

Commit

Permalink
Migrate ReactPointerEventsView to kotlin (facebook#47749)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: facebook#47749

Migrate ReactPointerEventsView to kotlin

changelog: [internal] internal

Differential Revision: D66217250
  • Loading branch information
mdvacca committed Dec 12, 2024
1 parent 3ab05d0 commit b5100bf
Showing 1 changed file with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,14 @@
* LICENSE file in the root directory of this source tree.
*/

package com.facebook.react.uimanager;

import android.view.View;
package com.facebook.react.uimanager

/**
* This interface should be implemented be native {@link View} subclasses that support pointer
* events handling. It is used to find the target View of a touch event.
* This interface should be implemented be native [View] subclasses that support pointer events
* handling. It is used to find the target View of a touch event.
*/
public interface ReactPointerEventsView {

/** Return the PointerEvents of the View. */
PointerEvents getPointerEvents();
public val pointerEvents: PointerEvents
}

0 comments on commit b5100bf

Please sign in to comment.