I wanna implement the button based tabs using angular-material. I tried applying the class and other stuff. But, it was not working and couldn't find a way.
I am following angular-material guide:https://material.angular.io/components/tabs/examples
<mat-tab-group>
<mat-tab label="First"> Content 1 </mat-tab>
<mat-tab label="Second"> Content 2 </mat-tab>
<mat-tab label="Third"> Content 3 </mat-tab>
</mat-tab-group>
Is there a way to place the normal button for First, Second and third tabs? I wanna implement something like this: https://i.stack.imgur.com/hcQvb.jpg I am scratching my head for more than three hours. Thanks!