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 f2cf829 commit 0000434Copy full SHA for 0000434
packages/canvas/Canvas/index.android.ts
@@ -31,7 +31,7 @@ export class Canvas extends CanvasBase {
31
(global as any).__canvasLoaded = true;
32
}
33
34
- [ignorePixelScalingProperty.setNative](value: boolean){
+ [ignorePixelScalingProperty.setNative](value: boolean) {
35
this._canvas.setIgnorePixelScaling(value);
36
37
@@ -169,9 +169,8 @@ export class Canvas extends CanvasBase {
169
170
disposeNativeView(): void {
171
this._canvas.setListener(null);
172
- this._canvas = undefined;
173
- this.setNativeView(undefined);
174
super.disposeNativeView();
+ this._canvas = undefined;
175
176
177
toDataURL(type = 'png', encoderOptions = 0.92) {
0 commit comments