Everything works as intended on web and ios but on an Android emulator these buttons do not display at all. Note that these buttons are dynamically created.
<button ion-button (click)="function()" class="some-class"
routerLink="/generic-routing" routerDirection="root" *ngFor="let food of
foods | async" >
<ion-label>
{{food.data.FruitName}}<br>
Temperature:<br>
{{food.data.Temperature}}
</ion-label>
</button>
anyone have any idea why this is happening on Android?