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 1cbf763 commit a2430c2Copy full SHA for a2430c2
src/ui-svg/index.android.ts
@@ -396,11 +396,11 @@ export class SVGView extends SVGViewBase {
396
nativeViewProtected: MySVGView;
397
createNativeView() {
398
const view = new MySVGView(this._context);
399
- if (getSDK() >= 28) {
400
- view.setLayerType(android.view.View.LAYER_TYPE_HARDWARE, null);
401
- } else {
402
- view.setLayerType(android.view.View.LAYER_TYPE_SOFTWARE, null);
403
- }
+ // if (getSDK() >= 28) {
+ // view.setLayerType(android.view.View.LAYER_TYPE_HARDWARE, null);
+ // } else {
+ // view.setLayerType(android.view.View.LAYER_TYPE_SOFTWARE, null);
+ // }
404
return view;
405
}
406
async handleSrc(src) {
0 commit comments