Is there a way to add a menu at the top right of a card using Angular Material? The documentation does not mention a specific tag for this feature.
https://i.sstatic.net/FEf40.png
I am looking to include a button with an icon at the top right corner, similar to the example shown in the image above.
<mat-card class="custome-card">
<a [routerLink]="['/products/123']">
<img mat-card-image
src="https://wonderfulengineering.com/wp-content/uploads/2013/12/Lamborghini-wallpaper-14.jpg"
alt="Photo of a Shiba Inu">
</a>
<mat-card-content>
<a [routerLink]="['/products/123']" class="productDetail"><span
class="mat-subheading-2">Lamborghini Aventador</span></a><br>
<span>NRs 1 - 2 Crore</span><br>
<strong>Size: </strong> <span>XL L M S XS</span>
</mat-card-content>
<mat-card-actions>
<div fxLayout="row" fxLayoutAlign="center">
<falcon-button [field]="favoriteBtnConfig"></falcon-button>
<falcon-button [field]="shareBtnConfig"></falcon-button>
<falcon-button [field]="shopCartBtnConfig"></falcon-button>
</div>
</mat-card-actions>
</mat-card>
The code above will display the image as shown below: