ionic stop fab from opening when clicking on fab

Solutions on MaxInterview for ionic stop fab from opening when clicking on fab by the best coders in the world

showing results for - "ionic stop fab from opening when clicking on fab"
Hajar
09 Jan 2018
1//Set the active of to true then the fab will toggle it back to false
2
3aFab._listsActive = true;
Christian
18 Jul 2019
1<ion-fab>
2  <button ion-fab [disabled]="!isValidInput()" (click)="add()">
3    <ion-icon name="checkmark"></ion-icon>
4  </button>
5</ion-fab>