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 eb481ee commit 69f1a2fCopy full SHA for 69f1a2f
src/core/index.ios.ts
@@ -322,7 +322,7 @@ export function overrideViewBase() {
322
if (this._elevationStateChangedHandler.stop) {
323
this._elevationStateChangedHandler.stop();
324
} else {
325
- this.off(GestureTypes.touch, this._elevationStateChangedHandler);
+ this.off('touch', this._elevationStateChangedHandler);
326
}
327
328
@@ -372,7 +372,7 @@ export function overrideViewBase() {
372
break;
373
374
});
375
- this.on(GestureTypes.touch, this._elevationStateChangedHandler);
+ this.on('touch', this._elevationStateChangedHandler);
376
377
378
0 commit comments