Sonic

Results 29 comments of Sonic

@KevinDennyII You need to put it in localhost / web server to get it work as it used ajax to load file.

try this: `sudo yum install libdrm libgbm libxshmfence -y`

Yes, we should use "ng-show" / "ng-hide" instead of apply style(display:none) to DOM directly.

Is it working on android 4.4 default web view core (non-chrome)?

YES, body tag still have `style="background-color: transparent;"`

Use this to fix the error temporary. ` import { Component, ChangeDetectorRef } from '@angular/core'; setTimeout(() => { window.document.body.style.backgroundColor = '#FFF'; this.ref.detectChanges(); }, 500); `

@devleaf-matt I found it work on my ionic3 project. But not work on ionic4 project.

@HugoHeneault Original code in `platforms/ios/{{YOUR_APP_NAME}}/Plugins/cordova-plugin-qrscanner/QRScanner.swift` should be: > metaOutput!.metadataObjectTypes = [AVMetadataObjectTypeQRCode] --- And ONE MORE LINE need to change in IOS > if found.type == AVMetadataObjectTypeQRCode || && found.stringValue !=...

iOS Code for plugin v3.0.1 `metaOutput!.metadataObjectTypes = [AVMetadataObject.ObjectType.qr, AVMetadataObject.ObjectType.ean13, AVMetadataObject.ObjectType.code128, AVMetadataObject.ObjectType.code39] ` `if ((found.type == AVMetadataObject.ObjectType.qr || found.type == AVMetadataObject.ObjectType.ean13 || found.type == AVMetadataObject.ObjectType.code128 || found.type == AVMetadataObject.ObjectType.code39) && found.stringValue...