ionic-tooltips
ionic-tooltips copied to clipboard
[active] in Ionic 4
is possible to control the tooltip ONLY via code? the tooltip is still active on hover - desktop - Ionic 4 - how to disable that
<ion-item tooltip="I'm a tooltip" [active]="activeTooltip" arrow >
activeTooltip: boolean = false;
ionViewWillEnter() { this.activeTooltip = false; }
Checkout the demo for the updated project for an example on how to use active
attribute to control the tooltipp.