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.
getEventDispatcher
1 parent 2987cf2 commit a92c219Copy full SHA for a92c219
android/paper/src/main/java/com/swmansion/gesturehandler/ReactContextExtensions.kt
@@ -6,7 +6,7 @@ import com.facebook.react.uimanager.events.Event
6
7
fun ReactContext.dispatchEvent(event: Event<*>) {
8
try {
9
- this.getNativeModule(UIManagerModule::class.java)!!.eventDispatcher.dispatchEvent(event)
+ this.getNativeModule(UIManagerModule::class.java)!!.getEventDispatcher().dispatchEvent(event)
10
} catch (e: NullPointerException) {
11
throw Exception("Couldn't get an instance of UIManagerModule. Gesture Handler is unable to send an event.", e)
12
}
0 commit comments