I need to implement this kind of view using mudblazor image components:
I got the images correct, but how can I add text on top of the image like in the picture above? Here is my code:
<MudGrid>u/foreach (var item in tabscatitm){<MudItem xs="3" ><MudImage Src=@item.ItemImageUrl Height="120" Width="120" u/onclick="ItemClick" Class="rounded-lg"Style="border:thin;border-color:darkgray;border-radius:10px"/><MudText Typo="Typo.h6">@item.ItemName</MudText><MudText Typo="Typo.body2">@item.ItemShortName</MudText></MudItem>}</MudGrid>
