How can I close the open FAB menu when a button in the menu was pressed?
Here's my button.
<ion-fab bottom center >
<button ion-fab><b>Hello</b></button>
<ion-fab-list side="top">
<button ion-fab (click)="refresh()"><ion-icon name="refresh"></ion-icon></button>
What would I have to add to refresh to make the whole FAB close?
Can I somehow reference the html object from within the code? Similar to the way iOS handles it's outlets?