()
| 50 | } |
| 51 | |
| 52 | public disposeNativeView() { |
| 53 | this._handler = null; |
| 54 | if (this._toggleColorTimer) { |
| 55 | clearTimeout(this._toggleColorTimer); |
| 56 | this._toggleColorTimer = null; |
| 57 | } |
| 58 | super.disposeNativeView(); |
| 59 | } |
| 60 | |
| 61 | private setNativeBackgroundColor(value: UIColor | Color) { |
| 62 | const native = this.nativeViewProtected; |
nothing calls this directly
no test coverage detected