-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Labels
Description
NativeScript/nativescript-core/ui/core/view/view.android.ts
Lines 381 to 386 in 3199a39
| public onUnloaded() { | |
| if (this.touchListenerIsSet) { | |
| this.nativeViewProtected.setOnTouchListener(null); | |
| this.touchListenerIsSet = false; | |
| this.nativeViewProtected.setClickable(this._isClickable); | |
| } |
this.nativeViewProtected.setOnTouchListener(null); would throw if nativeViewProtected is null.
this.nativeViewProtected.setClickable(this._isClickable); would throw if nativeViewProtected is null.