Вы можете создать пользовательский компонент, используя панель инструментов mat, кнопку fab, div и стиль:
Шаблон компонента:
<div class="fab-wrapper">
<button mat-button mat-fab>
<mat-icon>add</mat-icon>
</button>
</div>
<mat-toolbar color="primary">
<ng-content></ng-content>
</mat-toolbar>
Компонент SASS:
:host {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
margin-top: -36px;
.fab-wrapper {
width: 56px;
height: 56px;
position: relative;
top: 36px;
left: calc(50% - 36px);
padding: 8px;
border-radius: 36px;
background-color: white;
}
}
Это должно привести вас в правильном направлении.