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.
1 parent 896c074 commit ce70cd5Copy full SHA for ce70cd5
src/gesturehandler/gesturehandler.ios.ts
@@ -260,6 +260,9 @@ export class Manager extends ManagerBase {
260
this.manager.attachGestureHandlerToView(tag, view[handler.nativeGetterKey]);
261
}
262
const onInit = () => {
263
+ // we need to ensure the handler is registered
264
+ // in case it was dropped in dispose
265
+ this.manager.registerGestureHandler(handler.native);
266
267
};
268
const onDispose = () => this.manager.dropGestureHandler(tag);
0 commit comments