async presentPopover(ev: any) {
const popover = await this.popoverController.create({
component: PopoverComponent,
event: ev,
mode: 'ios',
translucent: true
});
return await popover.present();
}
<button style="margin:100px; padding: 10px:" (click)="presentPopover($event)">POP</button>
In a pristine Tabs app just created, the arrow does not appear on the popover. It used to, with version 5.
1 post - 1 participant