Jonathan
Jonathan

Reputation: 11355

Angular material floating add button like in gmail

how do I achieve something like below with angular material

enter image description here

Upvotes: 2

Views: 1389

Answers (1)

Sajeetharan
Sajeetharan

Reputation: 222522

You can use the ng-material-floating-button

<nav mfb-menu position="br" effect="zoomin" label="hover here"
     active-icon="ion-edit" resting-icon="ion-plus-round"
     toggling-method="click">
  <button mfb-button icon="paper-airplane" label="menu item"></button>
</nav>

Upvotes: 2

Related Questions