Hello,
we update to Ionic 5 last month.
We use a barcode-scanner an therefor an ionic-button with ionic-icon “qr-code”.
In Chrome there a two of 3 locations in our app where the icon is broken:
In Firefox there are no issues.
We use it like this:
<ng-container *ngIf="(qrCodeConfigKey$ | async) === 'true'">
<ion-buttons>
<ion-button slot="icon-only"
class="barcode-scanner-button-component"
(click)="showBarcodeScannerModal()">
<ion-icon name="qr-code-outline" title="Barcode-Scanner"></ion-icon>
</ion-button>
</ion-buttons>
</ng-container>
Any ideas somebody?