I am trying to implement tooltips similar to how this would be achieved in an Angular Material app, but this isnt working in an Angular Dart sample application. I am trying:
<button mat-raised-button
tooltip="test"
title="test 123"
matTooltip="By default, I delay"
aria-label="Button that displays a tooltip that has custom delays
through a default config">
Button with delay-default tooltip
</button>
I've also tried:
<p>Use the [trailing] content selector to add a tooltip.</p>
<material-input label="With a tooltip">
<material-icon
trailing
tooltipTarget
size="medium"
icon="help_outline"
#tooltipRef="tooltipTarget">
</material-icon>
</material-input>
<material-tooltip-card [for]="tooltipRef">
This is a paper tooltip!
</material-tooltip-card>
Going from this as a source ( https://dart-lang.github.io/angular_components/#/material_tooltip ) , I have also tried
<button materialTooltip="abc">test</button>
None have worked. How do I go about showing simple tooltips on hover?