Angular Material: How to close MatSidenav from inside a method in the component instead of from the html?
Using Angular + Angular Material 12 If you want to close the MatSidenav, then almost every solution I have found says to: (click)="sidenav.close()" in the html component. But I need that (click) for my logout function (click)="onLogoutSideNav()" onLogoutSideNav() { this.authService.logout(); } I need to close MatSidenav from inside a method in the component instead of… Read More Angular Material: How to close MatSidenav from inside a method in the component instead of from the html?